Schedule health formula to display blank symbol

Vincent Baccari
Vincent Baccari โœญโœญ
edited 05/21/25 in Formulas and Functions

Hello! I am curious how to edit the below formula, to show blank instead of green/yellow/red symbol if status/end date is blank:

=IFERROR(IF(Status@row = "Complete", "Green", IF(Status@row = "N/A", "Green", IF([End Date]@row = TODAY(), "Yellow", IF([End Date]@row < TODAY(), "Red", "Green")))), " ")

Best Answer

  • Nic Larsen
    Nic Larsen โœญโœญโœญโœญโœญโœญ
    Answer โœ“

    Try:

    =IF(AND(ISBLANK(Status@row), ISBLANK([End Date]@row)), "", IFERROR(IF(Status@row = "Complete", "Green", IF(Status@row = "N/A", "Green", IF([End Date]@row = TODAY(), "Yellow", IF([End Date]@row < TODAY(), "Red", "Green")))), " ")

Answers

Help Article Resources

Want to practice working with formulas directly in Smartsheet?

Check out the Formula Handbook template!