Need help with IF statement
Want to have RYGB symbol auto-populate based on following:
If Status = Complete, set to Blue
If Days Late greater than 29, set to Red
If Days Late < 15, set to Green
Otherwise set to Yellow
Answers
-
Write that into seperate IF statement then join them together.
if(status@row="Complete","Blue",else...)
if([Day Late]@row>29,"Red",else...)
if([Day Late]@row<15,"Green","Yellow")
All joined together you get:
=if(status@row="Complete","Blue",if([Day Late]@row>29,"Red",if([Day Late]@row<15,"Green","Yellow")))
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 62.4K Get Help
- 364 Global Discussions
- 200 Industry Talk
- 429 Announcements
- 4.4K Ideas & Feature Requests
- 137 Brandfolder
- 129 Just for fun
- 128 Community Job Board
- 446 Show & Tell
- 28 Member Spotlight
- 1 SmartStories
- 284 Events
- 35 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!