Index/Match Results Return only matching first entry on list

I"m using Index match to return a contact based on the department entered in another cell. The department entries are copied from the drop down list in the other sheet so they should be exact matches. For some reason it's only returning a value for the first entry on the list, but the others give a "no match" error.
This is the formula I use: =INDEX({Department Contact List Range 1}, MATCH([Component or Support Department]@row, {Department Contact List Range 2}), 0)
screenshots attached below:
Best Answer
-
Move the second to last closing parenthesis to the very end.
You have:
), 0)
Try instead:
, 0))
Answers
-
Move the second to last closing parenthesis to the very end.
You have:
), 0)
Try instead:
, 0))
-
That worked! How embarrassing! thank you!
Help Article Resources
Categories
Check out the Formula Handbook template!