I'm trying to check a box if it contains one of several text strings. But if it contains another subset of text strings, I want the box to NOT be checked. I got it working for the finding text portion, but I can't figure out how to make it remain unchecked if the other text strings are found. Here is the first string that worked:
=IF(OR(FIND("SWG", [Equipment ID]@row) >= 1, FIND("TRN", [Equipment ID]@row) >= 1, FIND("SUS", [Equipment ID]@row) >= 1, FIND("DPL", [Equipment ID]@row) >= 1, FIND("TRN", [Equipment ID]@row) >= 1, FIND("LDP", [Equipment ID]@row) >= 1, FIND("VFD", [Equipment ID]@row) >= 1, FIND("RDP", [Equipment ID]@row) >= 1, FIND("PNL", [Equipment ID]@row) >= 1), 1, 0)
So now I want to modify this so that it will return a 0 if the reference contains "ELV", as an example, as well as a couple other words. I'm wondering if I need to do an AND statement nested in the IF, returning a 0 if the other statements are found? Anyone have advice?