I need help with a formula for Schedule Health.
Currently its working in reference to "Todays" date only. I need the formula to take in consideration the "Completed Date" and not turn "Red" or "Yellow" if the task has been completed by the "Target Date".
Currently using:
=IF([Target End Date]1 < TODAY(), "Red", IF([Target End Date]1 = TODAY(), "Yellow", IF([Target End Date]1 > TODAY(), "Green")))
Best Answer
-
Is this closer to what you're looking to do? Not sure how you want schedule health broken out if you missed your completion dates.
=IF(AND([Completed Date]@row <= [Target End Date]@row, ISDATE([Completed Date]@row)), "Green", IF([Target End Date]@row < TODAY(), "Red", IF([Target End Date]@row = TODAY(), "Yellow", IF([Target End Date]@row > TODAY(), "Green"))))
Answers
-
Is this closer to what you're looking to do? Not sure how you want schedule health broken out if you missed your completion dates.
=IF(AND([Completed Date]@row <= [Target End Date]@row, ISDATE([Completed Date]@row)), "Green", IF([Target End Date]@row < TODAY(), "Red", IF([Target End Date]@row = TODAY(), "Yellow", IF([Target End Date]@row > TODAY(), "Green"))))
-
@Austin Smith Yes!! Thank you so much its perfect! I appreciate the help. 🤗
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.2K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 141 Just for fun
- 58 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 299 Events
- 38 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!