Red, Yellow, Green, Gray automation formula help needed for numerical ranges
I have a column called "metric data" and I am trying to create conditions for the status column (Already made it a symbols column) for Gray, Yellow, and Green
Green = 1 (100%)
Yellow= 0.01- 0.99 (1% to 99%)
Gray= 0%
=IF([Metric Data]@row = 1, "Green", IF([Metric Data]@row <= "0.01- 0.99", "Yellow", IF([Metric Data]@row = 0, "Gray")))
No color is populating for Gray and yellow appears on 0% and not on the 35%. Green does just well. What am i doing wrong?
Best Answer
-
Give this a try:
=IF([metric data]@row = 1, "Green", IF(AND([metric data]@row < 1, [metric data]@row > 0), "Yellow", IF([metric data]@row = 0, "Gray", "")))
Answers
-
Give this a try:
=IF([metric data]@row = 1, "Green", IF(AND([metric data]@row < 1, [metric data]@row > 0), "Yellow", IF([metric data]@row = 0, "Gray", "")))
-
Thank you!
Categories
- All Categories
- 14 Welcome to the Community
- Smartsheet Customer Resources
- 64.2K Get Help
- 419 Global Discussions
- 221 Industry Talk
- 461 Announcements
- 4.8K Ideas & Feature Requests
- 143 Brandfolder
- 142 Just for fun
- 58 Community Job Board
- 462 Show & Tell
- 32 Member Spotlight
- 1 SmartStories
- 299 Events
- 38 Webinars
- 7.3K Forum Archives