RYG Formula: Trigger Yellow within 2 of the Set Threshold
How can I Modify this Formula to Turn Yellow if Story Point is within 2 Points of the Max Story Points:
=IF([Story Points]@row = [Max Story Points]@row, "Yellow", IF([Story Points]@row < [Max Story Points]@row, "Green", IF([Story Points]@row > [Max Story Points]@row, "Red")))
Thanks
Best Answer
-
Ooops - I missed the obvious ...
=IF(AND([Story Points]@row >= ([Max Story Points]@row - 2), [Story Points]@row <= [Max Story Points]@row), "Yellow", IF([Story Points]@row < [Max Story Points]@row, "Green", IF([Story Points]@row > [Max Story Points]@row, "Red")))
Cheers,
Ramzi
Ramzi Khuri - Principal Consultant @ Cedar Tree Consulting (www.cedartreeconsulting.com)
Feel free to email me: ramzi@cedartreeconsulting.com
💡 If this post helped you out, please help the Community by marking it as the accepted answer/helpful.
Answers
-
Try this:
=IF([Story Points]@row =< ([Max Story Points]@row - 2), "Yellow", IF([Story Points]@row < [Max Story Points]@row, "Green", IF([Story Points]@row > [Max Story Points]@row, "Red")))
Cheers,
Ramzi
Ramzi Khuri - Principal Consultant @ Cedar Tree Consulting (www.cedartreeconsulting.com)
Feel free to email me: ramzi@cedartreeconsulting.com
💡 If this post helped you out, please help the Community by marking it as the accepted answer/helpful.
-
Error Received: #INVALID
-
Figured it Out. The Symbols (Less Than Equal) were backwards
=IF([Story Points]@row <= ([Max Story Points]@row - 2), "Yellow", IF([Story Points]@row < [Max Story Points]@row, "Green", IF([Story Points]@row > [Max Story Points]@row, "Red")))
-
Ramzi Khuri - Principal Consultant @ Cedar Tree Consulting (www.cedartreeconsulting.com)
Feel free to email me: ramzi@cedartreeconsulting.com
💡 If this post helped you out, please help the Community by marking it as the accepted answer/helpful.
-
Something is not right. The RYG Column is Yellow based on the Criteria Below and it should not be Yellow.
Story Point = 22
Max Story Points =31
Thoughts?
-
Ooops - I missed the obvious ...
=IF(AND([Story Points]@row >= ([Max Story Points]@row - 2), [Story Points]@row <= [Max Story Points]@row), "Yellow", IF([Story Points]@row < [Max Story Points]@row, "Green", IF([Story Points]@row > [Max Story Points]@row, "Red")))
Cheers,
Ramzi
Ramzi Khuri - Principal Consultant @ Cedar Tree Consulting (www.cedartreeconsulting.com)
Feel free to email me: ramzi@cedartreeconsulting.com
💡 If this post helped you out, please help the Community by marking it as the accepted answer/helpful.
Help Article Resources
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
- 300 Events
- 39 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!