Schedule Health from End Dates and % Complete
Hello,
I am currently trying to create a formula for my schedule health based off the red, yellow, and green symbols. I want green health to be if the % complete is 100% or the [End Date]@row > TODAY(). I want the red health to be [End Date]@row < TODAY() or if the % complete is less than 100%. I am not worried about the yellow symbol currently, but I would like to use this group of stoplight symbols.
The Current formula I have built is =IF(TODAY() > [End Date]@row, "Red", IF(TODAY() < [End Date]@row, "Green")). This has been working for the dates but does not account for the % complete. I also tried this formula to no avail: =IF(OR([% Complete]@row = 1, [End Date]@row > TODAY()) "Green", IF([End Date]@row < TODAY(), "Red")).
Does someone know what I am doing wrong or if there is a better formula for this problem?
Best Answer
-
You can try a nested IF instead
=IF([% COMPLETE]@row=1, "Green", IF(TODAY() > [End Date]@row, "Red", IF(TODAY() < [End Date]@row, "Green")))
Answers
-
You can try a nested IF instead
=IF([% COMPLETE]@row=1, "Green", IF(TODAY() > [End Date]@row, "Red", IF(TODAY() < [End Date]@row, "Green")))
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 63.5K Get Help
- 402 Global Discussions
- 213 Industry Talk
- 450 Announcements
- 4.7K Ideas & Feature Requests
- 141 Brandfolder
- 135 Just for fun
- 56 Community Job Board
- 454 Show & Tell
- 31 Member Spotlight
- 1 SmartStories
- 296 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!