if with blank cell, RYG ball how to become Yellow.
Comments
-
Use empty quotes. Like:
=IF(ETA11 > TODAY(), "Green", IF(ETA11 < TODAY(), "Red", IF(ETA11 = "", "Yellow", ""))
-
Hi Matth, can't work, RYG ball still with Red.
-
Try,
=IF(ISblank(ETA11),"Yellow", IF(ETA11 > TODAY(), "Green", IF(ETA11 < TODAY(), "Red", "")))
-
It work perfectly. big thanks.