Hello everyone,
I have a question. I am trying to create a formula which is supposed to check a box if a specific word (lets say word1) is in column 1 and there also is a date in column 2 or if there is one of two words (lets say word2 and word3) in column 1 and a date in colum3.
So far I have this:
=IF(AND([column1@row = "Word1", ISDATE([column2]@row)), "1", IF((OR([column1]@row = "word2", [column1]@row = "word3"), ISDATE([column3]@row), "1"))
But this does not seam to work. Does anyone have any idea how to fix this?