Help! Trying to edit the automation of RYG balls!
Hello All! I am stuck trying to fix the automation of my RYG balls in Smartsheets! I need to add one more IF formula to be the formula below so that if a task has not yet been started, the ball will show up as gray. You can see from the screenshot below that all the other balls are working except when the task has yet to have approval to move forward and therefore is "Not Started" under the status column, it still shows up as red. Can you please help me fix the formula below to add this feature? Thank you!
=IF(Done1 <> 1, IF(TODAY() - [Due Date]1 > -1, "Red", IF(TODAY() - [Due Date]1 > -4, "Yellow", "Green")))
Comments
-
Hi,
Hopefully this works I tested it with my sheets so fingers crossed.
First follow the picture and then change the code to:
=IF(Done1 <> 1, IF(Status1 = "Not Started", "Gray", IF(TODAY() - [Due Date]1 > -1, "Red", IF(TODAY() - [Due Date]1 > -4, "Yellow", "Green"))))
Rissa
-
Rissa is correct. To further explain... Nested IF's work in the order they are typed in. If the first IF is true, then it won't check to see if any others are. Nesting them in order of highest priority first is definitely a must.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 62.5K Get Help
- 367 Global Discussions
- 202 Industry Talk
- 432 Announcements
- 4.4K Ideas & Feature Requests
- 137 Brandfolder
- 129 Just for fun
- 128 Community Job Board
- 447 Show & Tell
- 29 Member Spotlight
- 1 SmartStories
- 285 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!