Formula for tracking the Health of In Progress project timelines
Hello,
I would like to build off of this formula:
=IF(AND([Target End Date]@row > TODAY(+10), [% Complete]@row < 1), "Green", IF(AND([Target End Date]@row < TODAY(+5), [% Complete]@row < 1), "Yellow", IF(AND([Target End Date]@row <= TODAY(), [% Complete]@row < 1), "Red")))
I would like for any project not "In process' to show up as "gray'.
Any suggestions will be appreciated!
Kate
Best Answer
-
Hi @Kate Condon, the easiest thing to do is to add your new requirement at the beginning, and wrap everything else. Assuming the a project that is not In Process has a % Complete of zero or blank, you could use the below:
=IF(OR([% Complete]@row=0,[% Complete]@row=""), "Grey", IF(AND([Target End Date]@row > TODAY(+10), [% Complete]@row < 1), "Green", IF(AND([Target End Date]@row < TODAY(+5), [% Complete]@row < 1), "Yellow", IF(AND([Target End Date]@row <= TODAY(), [% Complete]@row < 1), "Red"))) )
Answers
-
Hi @Kate Condon, the easiest thing to do is to add your new requirement at the beginning, and wrap everything else. Assuming the a project that is not In Process has a % Complete of zero or blank, you could use the below:
=IF(OR([% Complete]@row=0,[% Complete]@row=""), "Grey", IF(AND([Target End Date]@row > TODAY(+10), [% Complete]@row < 1), "Green", IF(AND([Target End Date]@row < TODAY(+5), [% Complete]@row < 1), "Yellow", IF(AND([Target End Date]@row <= TODAY(), [% Complete]@row < 1), "Red"))) )
-
This worked! Thank you!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.1K Get Help
- 380 Global Discussions
- 212 Industry Talk
- 442 Announcements
- 4.6K Ideas & Feature Requests
- 140 Brandfolder
- 129 Just for fun
- 130 Community Job Board
- 450 Show & Tell
- 30 Member Spotlight
- 1 SmartStories
- 289 Events
- 34 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!