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
- Customer Resources
- 65.2K Get Help
- 444 Global Discussions
- 142 Industry Talk
- 473 Announcements
- 5K Ideas & Feature Requests
- 84 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 489 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!