I am creating a formula to look at an instructor's name on one sheet and see if it exists on another sheet (verifying that a qualification has been completed). My formula sort of works, if there's a match it tells me "INVALID DATA TYPE" and if there's no match it says "NO MATCH"
I was hoping it would check a box and originally had that format on the column until these errors. I'd also be content with a simple yes/no. All columns in question are formatted as text/number.
=IF(INDEX({CT Certs Range 1}, MATCH([Instructor Name]@row, {CT Certs Range 1}, 0)), "yes", "no")
CT Certs Range 1 is the Instructor Name column on the sheet being searched.
How can I fix this?