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.4K Get Help
- 424 Global Discussions
- 136 Industry Talk
- 465 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 145 Just for fun
- 62 Community Job Board
- 464 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 301 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!