Need the formula to say:
- If Completed - Green
- If Canceled - Gray
- If In Progress - Yellow
- If Not Started - Red
- If On Hold - Yellow
- If In Progress, Not Started, or On Hold and and today is greater than End@row - Red
Here is what I have.... Works fine. Now need to add in the last bullet and I'm stumped.
=IF(Status@row = "Completed", "Green", IF(Status@row = "Canceled", "Gray", IF(Status@row = "In Progress", "Yellow", IF(Status@row = "Not Started", "Red", IF(Status@row = "On Hold", "Yellow"