I am working on launching a global hiring form that uses this formula:
=IFERROR(IF(Country@row = INDEX({Approved Seats Country}, MATCH([Unique Seat Code]@row, {Approved Seats Unique Seat Code}, 0)), 0, 1), 2)
Basically this formula returns the number "1" by searching for the name of the country in the source sheet (Approved Seat Sheet) and matching the "Unique Seat Code" entered on the destination sheet with the "Unique Seat Code" on the source sheet (Approved Seats Sheet). The number "1" determines a workflow that is supposed to be followed.
However, the country column in the destination sheet and the country row in the source sheet are multi-select dropdown columns. So the problem is that when an individual wants to select one specific country and not the others, there will be an error because all of the countries have to be selected in order for the formula to work.
Is there a way to use index/match to make sure that the formula searches all of the options chosen on the source sheet and matches at least one of the options chosen from the source sheet?
Thank you! :)