Hi all,
I've been deliberating on this one for a while now and not getting anywhere.
I have 20 columns which are single select dropdown (with the possibility to free type also). As an example, one of the column's choices are:
Compliant
Missing ToB
ToB not initialled
Incorrect ToB template used
Incorrect ToB uploaded
N/A because ...
while another column's choices are:
Compliant
Missing BGC document
Expired BGC document (at time of onboarding)
Illegible BGC document
Incorrect BGC document
Insufficient details on BGC document
N/A because waived by Client
N/A because not requested via JD
N/A because ...
I have a final column in which I want to show all the chosen dropdown responses in the previous 20 columns, separated by "; ", BUT not include the responses that say "Compliant" or "N/A because ... [with whatever free type text has been entered]".
Due to the number of columns and the free type element, I really don't want to do embedded IF statements if I can avoid it.
I can join them all together, but cannot eliminate the 2+ dropdown responses that I don't want included.
I've tried the basic:
=JOIN([Column 1]@row:[Column 20]@row, "; ")
as well as other iterations that gave a completely incorrect result. The above just returns the values from every column, of course.
Any suggestions would be most welcome!