I am looking for a formula to check "Done" when a task's children are all checked "Done."
Importantly, I would like this to be a column formula.
What would be the syntax to ask a formula to exclude tasks that have no children themselves?
Here's the formula we have been using, which only works when limited to parent rows, not when applied to the whole column:
=IF(COUNTIFS(CHILDREN(), 1) = COUNTIFS(CHILDREN(), OR(@cell = 1, @cell <> 1)), 1)