Nested IF Statement with RYGB Balls
Hi, I'm trying to setup a nested IF statement to do the following:
If DONE is checked then change the Status to Blue.
If Due Date is more than 8 days out then make it Green.
If Due Date is 7 days or less then make it Yellow.
If Due Date is TODAY or in the past make it Red.
This is what I have so far but it is not working.
=IF(Done1 = 1, "Blue", IF([Due Date]1 <> =TODAY(-7), "Green", IF([Due Date]1 > TODAY(-8), "Yellow", IF([Due Date]1 >= TODAY(0), "Red"))))
Any help would be greatly appreciated.
Tags:
Comments
-
You’re almost there, but your calculations are just a little off. Try this:
=IF(Done1 = 1, "Blue", IF([Due Date]1 > TODAY(8), "Green", IF([Due Date]1 > TODAY(), "Yellow", "Red")))
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.2K Get Help
- 445 Global Discussions
- 143 Industry Talk
- 476 Announcements
- 5K Ideas & Feature Requests
- 84 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 488 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!