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
- Customer Resources
- 64.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 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!