Hello!
I have a large sheet that I am working with. I want to create a formula that returns an "X" if the following criteria are met:
- Column "Date" is less than today (in the past)
- Column "Project ID" is blank/not populated
I currently have the following formula that is returning an Incorrect Argument Set:
=IF(AND([Date]@row < TODAY(), [Project ID]@row, "X", ""))
Any help would be appreciated!