Hi,
I am trying to write a formula that will take a value from the sheet the formula is in and check for that value in other sheets. If the value is found in at least one other sheet, the formula should return "Y". If it is not found, it should return "N".
This is my current attempt, but this just returns "N" for everything.
=IF(OR(ISERROR(MATCH([Org Unit Code]@row, {Concourse_Assignments Range 1}, 0)), ISERROR(MATCH([Syllabus Assignments]@row, {Concourse_AssignmentEntries Range 1}, 0))), "N", "Y")
I am basing this formula off of the following. The below formula works, but it is only checking one sheet for a value instead of two (or more than two).
=IF(ISERROR(MATCH([Org Unit Code]@row, {Concourse_ContactInformation Range 1}, 0)), "N", "Y")
As soon as I try to add a secondary check to the formula, it breaks. I either get "N" for everything or "Unparseable" errors.
Any help would be greatly appreciated.
Note: I apologize if this is a duplicate post. I posted this question a short while ago, but when I came back to the site, it said I had no posts with my profile and I couldn't find it anywhere so I am not sure what happened.