Project health formula based on due date
I want to create a project health formula that accomplishes the following:
If target end date is >3 days, status is complete, or target end date is blank = green
If target end date is in 1-3 days and status is not complete = yellow
If target end date is today or 1+ days ago and status is not complete = red
Answers
-
How's this:
=IF(OR([target end date]@row - TODAY() >= 3, [target end date]@row = "", status@row = "complete"), "Green", IF(AND([target end date]@row - TODAY() <= 3, [target end date]@row - TODAY() >= 1), "Yellow", "Red"))
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 62.8K Get Help
- 376 Global Discussions
- 207 Industry Talk
- 440 Announcements
- 4.5K Ideas & Feature Requests
- 139 Brandfolder
- 129 Just for fun
- 130 Community Job Board
- 449 Show & Tell
- 30 Member Spotlight
- 1 SmartStories
- 284 Events
- 33 Webinars
- 7.3K Forum Archives
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!