I'm trying to denote row status using harvey balls of 4 colors - red, yellow, orange and grey.
- Red - Blocked or end date is past
- Yellow - Start date is past AND status is not In Progress
- Green - End date is in the future
- Gray - Not started
This is my formula -
=IF(Status@row = "Not Started", "Gray", IF(OR(Status@row = "Blocked", [End Date]@row < TODAY()), "Red", IF(OR(Status@row = "Not Started", [Start Date]@row < TODAY()), "Yellow", IF([End Date]@row > TODAY(), "Green"))))
But, for a row that has status complete, start date and end date in the past, the harvey ball is red. How should I modify my formula?