I need help with a formula for Schedule Health.

Options

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

  • Austin Smith
    Austin Smith ✭✭✭✭✭
    Answer ✓
    Options

    @Natalie11

    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

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!