Sign in to join the conversation:
The posts in this section are historical and no longer monitored for accuracy. If this discussion interests you and you'd like to join in, please visit the active Community to post and engage.
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
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.