Hello, I am trying to use INDEX MATCH and the OR function. I'm referencing 3 other sheets try to say if we find x in any of these 3 sheets I want y from those sheets. x and y will only be present in 1 of the 3 other sheets. However every I do this I either get an error code or unparsable.
These are a few of the formulas I've tried:
- INDEX({Project Intake (Clinical Research) Range 2}, MATCH([Row ID]@row, {Project Intake (Clinical Research) Range 1}) OR INDEX({Abandoned Projects Range 2}, MATCH([Row ID]@row, {Abandoned Projects Range 1}) OR INDEX({Project Planning (Completed Setups) Range 2}, MATCH([Row ID]@row, {Project Planning (Completed Setups) Range 1}))
- OR(INDEX({Project Intake (Clinical Research) Range 2}, MATCH([Row ID]@row, {Project Intake (Clinical Research) Range 1}), INDEX({Abandoned Projects Range 2}, MATCH([Row ID]@row, {Abandoned Projects Range 1}), INDEX({Project Planning (Completed Setups) Range 2}, MATCH([Row ID]@row, {Project Planning (Completed Setups) Range 1})))
- I also tried doing OR for INDEX and OR for Match separately
Please help me! If I shouldn't be using INDEX, MATCH, or OR please educate me.