Formula using the RYG status balls
I'm trying to write a formula using the RYG status balls.
These are the criteria:
Green= If the "Deployment Complete" box is checked
Yellow= if there is a date populated in "Module Go-Live Date"
Blue= for anything else (deployment is not complete and Go-Live is not scheduled)
I only got this far with the formula and (of course!) it doesn't work.
=IF([Deployment Complete],1, "Green", IF([Module Go-Live Date]@row, "", "Blue")
Thanks for your help!
Best Answer
-
How about this:
=IF([Deployment complete]@row = 1, "Green", IF([Module Go-Live Date]@row <> "", "Yellow", "Blue"))
This assumes you won't have a case where both Deployment complete and Module Go-Live date are both completed (eg you have an automation that clears the value in Module Go-Live date when Deployment complete is ticked)... if there's a risk of both being ticked, you might want to add a further check in!
Rich
Rich Coles
Prodactive | Smartsheet-aligned Platinum partners
Check out our Smartsheet-dedicated YouTube channel for tips, tricks and inspiration
Answers
-
Greetings @deb_63_hydracor
Please give this a try:
=IF([Deployment Complete]@row = 1, "Green", IF(ISDATE([Module Go-Live Date]@row), "Yellow", "Blue"))
Please let me know if you have any issues.
Frank Smith, PMP
Assistant Director | IT Special Projects Mgr.
Oregon Parks & Recreation Department
If my response helps, please mark it as an accepted answer. 😎
-
How about this:
=IF([Deployment complete]@row = 1, "Green", IF([Module Go-Live Date]@row <> "", "Yellow", "Blue"))
This assumes you won't have a case where both Deployment complete and Module Go-Live date are both completed (eg you have an automation that clears the value in Module Go-Live date when Deployment complete is ticked)... if there's a risk of both being ticked, you might want to add a further check in!
Rich
Rich Coles
Prodactive | Smartsheet-aligned Platinum partners
Check out our Smartsheet-dedicated YouTube channel for tips, tricks and inspiration
-
Thanks!
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.6K Get Help
- 433 Global Discussions
- 136 Industry Talk
- 465 Announcements
- 4.9K Ideas & Feature Requests
- 143 Brandfolder
- 147 Just for fun
- 63 Community Job Board
- 466 Show & Tell
- 32 Member Spotlight
- 2 SmartStories
- 298 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!