I am trying to make a conditional index match statement where if "Topic A" is selected from a dropdown column called "Tags", the "Technical Lead" column will have Name A populated in it. Otherwise, it will be populated based on this index match:
=INDEX({EMU Contact}, MATCH(Region@row, {Region}, 0))
Looking at some other discussion topics, it looks like I need to follow this pattern, but I don't understand what to put for the first index match (the value_if_true) since I only want to match it to one person's name. How can I complete the middle part of this formula?
=IF( logical_expression , value_if_true , [ value_if_false ])
=IF([Tags]@row = "Topic A", first_sheet_index_match, second_sheet_index_match)
=IF([Tags]@row = "Topic A", first_sheet_index_match, =INDEX({EMU Contact}, MATCH(Region@row, {Region}, 0))
Thank you for any help!