Sign in to join the conversation:
I cannot figure out why this formula does not work. HELP! Thanks.
Suggestions:
=IF([Complete]1 = 1, "B"),
IF([Finish]1< TODAY, "R"),
IF([Finish]1 >= TODAY(+45), "Y"),
IF([Finish]1 <= TODAY(+90), "G", " ")))
Hi,
Are you trying to use the RYGB Symbols? Do you get an error message?
Hope that helps!
Have a fantastic weekend!
Best,
Andrée Starå
Workflow Consultant / CEO @ WORK BOLD
Try something like this.
=IF(Complete@row = 1; "Blue"; IF(ISBLANK(Finish@row); ""; IF(Finish@row < TODAY(); "Red"; IF(Finish@row >= TODAY(45); "Yellow"; IF(Finish@row <= TODAY(90); "Green"; "")))))
The same version but with the below changes for your and others convenience.
=IF(Complete@row = 1, "Blue", IF(ISBLANK(Finish@row), "", IF(Finish@row < TODAY(), "Red", IF(Finish@row >= TODAY(45), "Yellow", IF(Finish@row <= TODAY(90), "Green", "")))))
Depending on your country you’ll need to exchange the comma to a period and the semi-colon to a comma.
Did it work?
I was not able to get this to work.
Ok. Do you get an error message?
Can you describe your process in more detail and maybe share the sheet(s) or some screenshots? (Delete/replace any confidential/sensitive information before sharing) That would make it easier to help. (share too, andree@getdone.se)
The Issue My project-specific metadata sheets use INDEX/MATCH formulas that reference the Intake sheet using a Project ID. When the automation archives rows from the Intake sheet, these formulas break because they can no longer locate the source data. Example formula: =INDEX({Project Intake Name}, MATCH([Project ID 1]@row,…
Two of my five automation workflows appear to have just randomly stopped performing on April 9, 2026. All others, which would/are performing as normal and would be functioning alongside the other workflows, are functional and appear to be untouched by this 'bug'. Help I've tried all that I can think of.
I need to add 2 horizontal lines to my stack chart to show when we have over allocated for our resources and where our average is. Does anyone know how to make this happen in a Smartsheet dashboard?