I'm trying to create a formula with the following logic:
- Don't highlight the red flag if the status is N/A or Completed
- Highlight the red flag If the status is In Progress or Not Started and the due date is <= Today (-3 days)
Below is what I'm using, but now none of the flags are turning red (and no error message appears):
=IF(OR(Status@row = "N/A", Status@row = "Completed"), 0, IF(AND(Status@row = "In Progress", [Due Date]@row <= TODAY(-3)), 1, IF(AND(Status@row = "In Progress", [Due Date]@row <= TODAY(-3)), 1)))