Hello Community,
I'm using a helper column formula and trying to identify cells in another column that contain the words "Basics" and "Clinical".
The column I'm referencing is "Event Name".
I tried this:
=IF(COUNTIFS([Event Name]:[Event Name], AND(FIND("Basics", @cell) = 1, FIND("Clinical", @cell) = 1)), 0, 1) and it gave me a "1" in all columns.
=IF(COUNTIFS([Event Name]:[Event Name], AND(FIND("Basics", @cell) = 0, FIND("Clinical", @cell) = 0)), 0, 1) and it gave me "Invalid Data Type".
Any suggestions?
Thanks in advance!
John