Hi All,
I am currently trying to set a formula for Schedule health that performs the following actions:
- PAST DUE - Red: Today’s Date is 1 day after Due Date AND % Complete is < 100%
- AT RISK - Yellow: Today’s Date is 10 before Due Date AND % Complete is < 75%
- ON TRACK - Green: Today’s Date is 10 before Due Date AND % Complete is > 75%
- COMPLETE - Blue: % Complete is 100% regardless of the date.
I'd also like a formula to update the Status to the above as well.
Here is my formula: =IF([% Complete]@row = 1, "Blue", IF(TODAY() > [End Date]@row, "Red", IF(TODAY(10) >= [End Date]@row, IF([% Complete]@row < 0.75, "Green", IF(TODAY(10) >= [End Date]@row, IF([% Complete]@row > 0.75, "Yellow"))))))