First of all, not sure if this doable, but I'm sure it has to be.
I have 2 sheets. On the first sheet, we have a column in which multiple people can be checked it looks like this:
We then have a second sheet in which we use index match formulas to populate the address with the appropriate name. What happens when we select more than name on the first sheet is that on the second sheet, only the first name appears.
Here is the formula we are using:
=IFERROR(IF(Name1 = "", "", INDEX({Work Site}, MATCH(Name1, {Test Sheet Range 2}, 1))), "")
(Not all rows will have a name under the match thus the iferror so it doesn't show up as "#NO MATCH")
This seems to work flawlessly if its only 1 person selected but not multiple.
Is this possible or will we just have to have multiple rows for the same address with singular selection on Sheet 1? Thanks in advance for your help.