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)
Hi, My team uses smartsheet to create and notify our team that a user has opened a ticket. We have noticed that emails that are sent via automations are either extremely delayed (several days in some cases) or not being sent out at all. Has anyone else experienced this? Is this an issue on the servers from the issue…
Hello, I am trying to create a chart widget in my dashboard, but I keep getting "Selected data cannot be charted. Please select a new range." error. The report I am using is already summarized in numeric value. What is funny is I have report that I created a chart widget in another dashboard, and when I use that same…
I have a picture below for an example of this. I want to create a formula to get counts of items in "Column2", but if "Column4" states "change" I want the "Column2" count to not work and instead count what is it "Column3" in that given row. Column4 can also have several different things in it besides "good" that I want it…