I am trying to build a formula where "At Risk" will be flagged IF the following conditions are met:
- the Status is not Gray (n/a) or Green (complete) AND
- the End Date has passed
I tried this formula but something is missing, it comes out unparseable.
=IF((NOT(Status@row = "GRAY")), 0, 0),IF(AND([End Date]@row < TODAY(), NOT(Status@row = "GREEN")), 1, 0)
Advice welcome!