Welcome to the Smartsheet Forum Archives
The posts in this forum are no longer monitored for accuracy and their content may no longer be current. If there's a discussion here that interests you and you'd like to find (or create) a more current version, please Visit the Current Forums.
Checkbox Parent Cell if any Children cells are Checked
Options

Myra
✭✭
Hello,
I am looking to use a formula that will check the box of the parent box if any of the children boxes in the same column are checked.
Can anyone help with that?
Thanks
Tags:
Comments
-
This:
=COUNTIF(CHILDREN(), 1) > 0
or if you prefer to use IF() statements, then this
=IF(COUNTIF(CHILDREN(), 1) > 0, 1, 0)
Craig
-
Thank you! That works perfectly.
This discussion has been closed.