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 am attempted to export to excel. I have two different smartsheet documents to export. One of them exported to excel fine, but not the other. This happened a few weeks ago. I make sure all columns were the correct size & no cells were hidden. "We have found a problem with (file) Do you want us to try and recover as much…
Hello Smartsheet Community, I need some help with a report that I created and shared with a customer. The customer is not seeing any of the information that is pulling into the report. See screen shot below that the customer texted me. I do have the report filter only showing the customer their product pulling from our…
BLUF: When I create an Invoice, I need the cell-link to my live price data to be severed. I currently have a Price sheet for my products that is updated frequently. I use Control Center to create Projects, which includes an Invoice sheet. I have a dropdown on my invoice sheet to select a product, and then I use Index…