Schedule health formula to display blank symbol

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
-
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
-
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")))), " ")
-
Appreciate you @Nic Larsen! This worked flawlessly!
Help Article Resources
Categories
Check out the Formula Handbook template!