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)
I have a monthly report I send out that has a long list of recipients. I know I can edit the recurrence of it being sent, but does anyone know of an easy way to just add or take out people that get my email without having to recreate the whole thing?
We would like to allow conference attendees to check themselves in using tablets at the conference center. I know there is a "find in sheet" magnifying glass in table view, but it is not super obvious, especially for non-Smartsheet users. Is there a better way for them to easily find their row among all the attendees so…
Greetings- I have a automation setup when I select the "status" column drop-down to "completed" I want the row info to be emailed to the contact to submitted it with a follow up then I want it to archive the row (aka move to another sheet). When I run the automation only 1 of the 2 requests happen. The archive happens…