We are utilizing the RYGB properties for our Health column and trying to improve the tracking of each task using this criteria:
- If a task has NOT started and no progress has been made, no color indicator
- If a task has started and is not late, but progress has been made, green color indicator
- If a task is 100% complete, blue color indicator
- If a task has started and is not late, but is 0% complete, yellow color indicator
- If a task has passed its due date and is less than 100% complete, red color indicator
The columns in play are Start Date, Commit Date (due date), and % Complete. I believe the health ball allocation should look like this:
- If task has NOT reached its Start Date and % Complete = 0, no health ball
- If task has reached its Start Date or not reached its Commit Date and % Complete > 0, green health ball
- If % Complete = 1, blue health ball
- If task has reached or passed its Start Date and % Complete = 0, yellow health ball
- If task has passed its Commit Date and % Complete < 1, red health ball
I have been working with this formula but it is unparseable (and incomplete since I was struggling with what I have so far):
=IF(AND([% Complete]3 < 1, TODAY() < [Start Date]3), "Green", IF([% Complete]3 = 1, "Blue", IF(AND([% Complete]3 = 0, TODAY() > [Start Date]3), "Yellow")))))