Auto-check Checkbox
Is there a formula to auto-check a PARENT checkbox if all the CHILD checkboxes are checked? Reverse of that, is there a way to check all CHILD checkboxes by simply checking the PARENT checkbox? Seems straight forward but I can't figure it out.
Best Answer
-
Check the parent:
=IF(AND(COUNTIFS(CHILDREN(), OR(@cell = 1, @cell <> 1)) > 0, COUNTIFS(CHILDREN(), @cell <> 1) = 0), 1)
Check the children:
=PARENT()
Answers
-
Check the parent:
=IF(AND(COUNTIFS(CHILDREN(), OR(@cell = 1, @cell <> 1)) > 0, COUNTIFS(CHILDREN(), @cell <> 1) = 0), 1)
Check the children:
=PARENT()
-
Thanks, that did it.
-
Help Article Resources
Categories
Want to practice working with formulas directly in Smartsheet?
Check out the Formula Handbook template!
Check out the Formula Handbook template!