I have a Project Plan (PP) sheet and Project Metadata (PM) sheet.
From the PM sheet, I want to search through the entire "Status" column in the PP sheet to see if any cell contains "On Hold". I've already created the reference from PM to the PP Status column and named it {PP - Status}.
I'd expect this to work, but I can't get it to work:
=IF(CONTAINS("On Hold", {PP - Status}, "On Hold", "Not On Hold"))
I did find a formula snippet in another post, but I don't even understand how it works. Any explanation is welcome! The part I don't understand in the formula below is the "CONTAINS("On Hold", @cell)" part... specifically, what the heck is @cell doing?
=IF(IFERROR(INDEX(COLLECT({PP - Status}, {PP - Status}, CONTAINS("On Hold", @cell)), 1), "") = "On Hold", "On Hold", "Not On Hold")
Also, I had to at the IFERROR part since I get "INVALID VALUE" if there isn't a match. I'm not clear why about this either.
What's the simplest formula to achieve my goal? Also, can anyone help clear up confusion on the @cell thing I mentioned above?