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
- Customer Resources
- 65.4K Get Help
- 447 Global Discussions
- 144 Industry Talk
- 478 Announcements
- 5K Ideas & Feature Requests
- 85 Brandfolder
- 151 Just for fun
- 72 Community Job Board
- 490 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 302 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!