Schedule Health based off of Today/Due Date/% Complete
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"))))))
Answers
-
Hi @Krusem , this formula accounts for what you need and it also considers any dates greater than 10 days out as green, regardless of the % complete.
=IF([% Complete]@row = 1, "Blue", IF([End Date]@row > TODAY(10), "Green", IF([End Date]@row < TODAY(), "Red", IF([End Date]@row < TODAY(10), IF([% Complete]@row > 0.75, "Green", "Yellow")))))
Is that what you were going after?
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 496 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!