RYG Formula Based on Checkbox
Smartsheet Community:
I need a little help with this Formula:
=IF(Done@row = 1, "Green", IF(Done@row <> 1 "Grey", "Red")
I would like to have the row turn Grey if None of the Children Checkbox are Checked, but if one is Checked the Parent is Red until all Children are Check-boxes are Checked.
Does anyone have that formula?
Thanks
Best Answer
-
Results Came Back UNPARASEABLE
Here is the Exact Formula:
=IF(COUNTIFS(DESCENDANTS([Done]@row), 1) = 0, "Grey", IF(COUNTIFS(DESCENDANTS([Done]@row), 1) <> COUNT(DESCENDANTS()), "Red", "Green")))
Answers
-
Point of clarification: I want to Keep the Green if all the Children / DESCENDANTS boxes are checked
-
Try something like this...
=IF(COUNTIFS(DESCENDANTS([Checkbox Column]@row), 1) = 0, "Grey", IF(COUNTIFS(DESCENDANTS([Checkbox Column]@row), 1) <> COUNT(DESCENDANTS()), "Red", "Green"))
-
Results Came Back UNPARASEABLE
Here is the Exact Formula:
=IF(COUNTIFS(DESCENDANTS([Done]@row), 1) = 0, "Grey", IF(COUNTIFS(DESCENDANTS([Done]@row), 1) <> COUNT(DESCENDANTS()), "Red", "Green")))
-
I found the problem. I had an additional Parenthesis at the end.
Thanks
-
Happy to help! 👍️
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 65.2K Get Help
- 444 Global Discussions
- 142 Industry Talk
- 473 Announcements
- 5K Ideas & Feature Requests
- 84 Brandfolder
- 150 Just for fun
- 71 Community Job Board
- 489 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 301 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!