It seems like this should be simple but I cannot find any examples, and have not been successful with various attempts. In plain language I want to:
IF Today’s date > Target End Date
AND Status IS NOT EQUAL “Complete” or “Cancelled”
Then “Overdue”
Else nothing
Alternatively I would be happy to change the Status to EQUAL "In Progress" or "Not Started" or "On Hold" or "Blocked" if that is easier.
It is the multiple values for a single field I can't seem to make work with the AND statement. This works:
=IF(AND(TODAY() > [Target End Date]@row, Status@row = "In Progress"), "Overdue") as does this:
=IF(AND(TODAY() > [Target End Date]@row, Status@row <> "Complete"), "Overdue")
Any help is appreciated, I feel like I'm missing something obvious. Thanks!