INDEX MATCH with multiple values question
Hello,
I have 2 sheets.
Response Form
Assignment tracker
Both sheets have the same following columns:
Evaluator Name
Candidate Name
I have a check box column in Assignment Tracker that I'd like to check off if the Candidate name AND the Evaluator name match in both sheets.
There will be duplicate results for each column but the pair should always be unique. The formula I have doesn't work as it only checks the very first instance of either and stops there. Is there a way to write a formula that will stop once BOTH values are present?
Here's my formula:
=IFERROR(IF([Evaluator Name]@row = INDEX({FY24 Hirevue Response Sheet Range 1 }, MATCH([HV Candidate Name]@row, {FY24 Hirevue Response Sheet Range 2}, 0)), 1), "")
Best Answer
-
I think I would just use a COUNTIFS in this situation:
=IF(COUNTIFS({FY24 Hirevue Response Sheet Range 1}, [Evaluator Name]@row, {FY24 Hirevue Response Sheet Range 2}, [HV Candidate Name]@row) > 0, 1, "")
Answers
-
I think I would just use a COUNTIFS in this situation:
=IF(COUNTIFS({FY24 Hirevue Response Sheet Range 1}, [Evaluator Name]@row, {FY24 Hirevue Response Sheet Range 2}, [HV Candidate Name]@row) > 0, 1, "")
-
That is so much simpler a solution. Worked perfectly.
Thank you
-
Help Article Resources
Categories
Check out the Formula Handbook template!