Needing a formula for schedule health
Can someone help with a formula for my Project Plan that does the following:
Status = Not Started and is < OR = Planned Start Date, schedule health indicator color should show as “gray”
Status = Not Started and is > 14 days past Planned Start Date, schedule health indicator color should show as “Red”
Status = Not Started and is > 1-13 days past Planned Start Date, schedule health indicator color should show as “Yellow”
Status = In Progress and is = Or < Planned End Date, schedule health indicator color should show as “Green”
Status = In Progress and is 1-13 days past Planned End Date, schedule health indicator color should show as “Yellow”
Status = In Progress and is >14 days past Planned End Date, schedule health indicator color should show as “Red”
Status = On Hold, schedule health indicator should show as “Red”
Status = Complete, schedule health indicator should show as “Blue”
Answers
-
Try this:
=IF(Status@row = "Complete", "Blue", IF(Status@row = "On Hold", "Red", IF(Status@row = "Not Started", IF([Planned Start Date]@row>= TODAY(), "Gray", IF([Planned Start Date]@row>= TODAY(-13), "Yellow", "Red")), IF([Planned End Date]@row>= TODAY(), "Green", IF([Planned End Date]@row>= TODAY(-13), "Yellow", "Red")))))
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!