Hi Community,
I have a formula that looks up an ID I enter in a new sheet and pulls in its title from an existing sheet.
=IFERROR(IF(ISBLANK(Task@row), "", INDEX({Master Range 1}, MATCH(Task@row, {Master Range 2}, 0))), "")
This works great, but now I want to tell it to search 2 different sheets to search for the title. Individually it would be:
=IFERROR(IF(ISBLANK(Task@row), "", INDEX({Slave List Range 1}, MATCH(Task@row, {Slave List Range 2}, 0))), "")
But can I combine both of those formulas in an OR so that I enter my ID, and it looks in 1 sheet or another to find and populate the title?
Thanks!