I am attempting to do the following:
- If status is Complete or N/A = Green
- If start date is within 5 days or past due and status is not Complete or N/A = Red
- If start date is more than 5 days and status is not Complete or N/A = Yellow
I have the following formula, but no luck. Any help is greatly appreciated.
=IF(OR(Status@row = "Complete", Status@row = "N/A"), "Green", IF([Start Date]@row <= TODAY(5), "Red", IF(Status@row <> "Complete", Status@row <> "N/A", "Yellow", "Green")))