Hello,
I want to index and match off of a dropdown, multi-select column. If there are multiple selections in the dropdown I would like the project name to appear next to each individual name so that I can track assignments by the individual.
In sheet one, I have the project name and assignee names. The assignees are multi-select.
In sheet two, I have a column with the list of individuals and a column where I want their current assignment returned.
I am aware of how to get a return for one person using =IF(NOT(ISBLANK(Person@row)), INDEX({Test Sheet 2 Range 2}, MATCH(Person@row, {Test Sheet 2 Range 1}, 0)), " ")
How can I have the project name return for multiple matches on separate rows? In this case, "taco" would show for Sue, John and Karen.
Thank you