IF AND
Ok. This works for me:
=IF([Estimated Days to Completion]@row > 10, "Green", IF([Estimated Days to Completion]@row <= 10, "Yellow"))
I can't get these to work:
Estimated Days to Completion is less than or equal to 0 and Status is not closed, should have red dot.
Estimated Days to Completion is less than or equal to 10 and greater than 0, should have yellow dot.
Status contains "On Hold" should have gray dot
Answers
-
=IF(Status@row = "On Hold", "Gray", IF([Estimated Days to Completion]@row > 10, "Green", IF([Estimated Days to Completion]@row >= 0, "Yellow", IF(Status@row <> "Closed", "Red"))))
Give that a try.
-
You could simplify this by just making the yellow requirement be greater than 0. The first would fire at any days greater than 10. Try this... Red would be anything less than 0.
=IF(Status@row = "On Hold", "Gray", IF([Estimated Days to Completion]@row > 10, "Green", IF([Estimated Days to Completion]@row >= 0, "Yellow", "Red")))
-
@Mike Wilday I thought about just going straight from Yellow to Red, but what if the Status is "Closed"? It would still eventually display a Red even though it is closed. I assumed that because it was specified about not being closed, that a status of closed shouldn't be red. Having said that... My solution would still show Green and Yellow for closed Statuses.
@Michael Figone Let us know what you think regarding the Status being closed vs not and the various color options.
-
@Paul Newcome Good point. @Michael Figone You may want to have the status be Green if closed or blank if closed. Let us know either way.
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 62.3K Get Help
- 364 Global Discussions
- 199 Industry Talk
- 428 Announcements
- 4.4K Ideas & Feature Requests
- 136 Brandfolder
- 127 Just for fun
- 128 Community Job Board
- 444 Show & Tell
- 28 Member Spotlight
- 1 SmartStories
- 283 Events
- 35 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!