Formula for Health based on State only no dates
Hello, I am new to Smartsheet and I am trying to set up a basic formula for the Health using the color dots. Every formula I try is unparseable. I do not want it reading due dates right now. We are just setting this up and our due dates are work in progress.
What I want is if the State Column reads the below it has corresponding color.
Delayed = Red
Yellow = Not Started
Green = In Progress
Blue = Complete
Thanks
Best Answer
-
Write all the if statement seperatly then join them together.
if(State@row="Delayed","Red",else...)
if(State@row="Not Started","Yellow",else...)
if(State@row="In Progress","Green",else...)
if(State@row="Complete","Blue","")
Now joint you get:
=if(State@row="Delayed","Red",if(State@row="Not Started","Yellow",if(State@row="In Progress","Green",if(State@row="Complete","Blue",""))))
Answers
-
You can use conditional formatting to conditionally highlight.
-
Write all the if statement seperatly then join them together.
if(State@row="Delayed","Red",else...)
if(State@row="Not Started","Yellow",else...)
if(State@row="In Progress","Green",else...)
if(State@row="Complete","Blue","")
Now joint you get:
=if(State@row="Delayed","Red",if(State@row="Not Started","Yellow",if(State@row="In Progress","Green",if(State@row="Complete","Blue",""))))
-
Thank you! That is exactly what I needed. Appreciate the help
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.3K Get Help
- 423 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 144 Just for fun
- 59 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 300 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!