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
- Customer Resources
- 67.8K Get Help
- 474 Global Discussions
- 202 Use Cases
- 515 Announcements
- 5.5K Ideas & Feature Requests
- 87 Brandfolder
- 157 Just for fun
- 82 Community Job Board
- 521 Show & Tell
- 36 Member Spotlight
- 3 SmartStories
- 309 Events
- 37 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!