IF Planned Date is Still blank leave RGB Status Column Blank

Hi, If you could please assist with the formula below? The formula works perfect, except for when no date is entered in the Planned start date. Currently when no date is entered in the Planned start column the RGB ball stays "Red", and i would like it to show "".
Current formula:
=IF([Kick-Off Meeting Actual Finish]1 <> ""; "Green"; IF([Kick-Off Meeting Planned Start]1 < TODAY(); "Red"; ""))
Thanks
Tonna
Comments
-
Hi Tonna,
Try something like this.
=IF([Kick-Off Meeting Actual Finish]@row <> ""; "Green"; IF(ISBLANK([Kick-Off Meeting Planned Start]@row); ""; IF([Kick-Off Meeting Planned Start]@row < TODAY(); "Red")))
The same version but with the below changes for your and others convenience.
=IF([Kick-Off Meeting Actual Finish]@row <> "", "Green", IF(ISBLANK([Kick-Off Meeting Planned Start]@row), "", IF([Kick-Off Meeting Planned Start]@row < TODAY(), "Red")))
Depending on your country you’ll need to exchange the comma to a period and the semi-colon to a comma.
Did it work?
Have a fantastic weekend!
Best,
Andrée Starå
Workflow Consultant @ Get Done Consulting
SMARTSHEET EXPERT CONSULTANT & PARTNER
Andrée Starå | Workflow Consultant / CEO @ WORK BOLD
W: www.workbold.com | E:[email protected] | P: +46 (0) - 72 - 510 99 35
Feel free to contact me for help with Smartsheet, integrations, general workflow advice, or anything else.
Help Article Resources
Categories
Check out the Formula Handbook template!