I want to update the parent row of status based on the children.
If all are completed, then completed
If any are in progress, then in progress
if none are started then not started
The below formula generally works but it has couple of issues:
1) When I convert it to the column formula, then I cannot change the children rows manually.
2) It automatically sets the children rows that don't have any children to Completed
The idea is to update the children rows manually and then have the parent row reflect taht
=IF(CONTAINS("In Progress", CHILDREN()), "In Progress", IF(AND(COUNTIF(CHILDREN(), "Complete") = COUNT(CHILDREN()), COUNTIF(CHILDREN(), "") = 0), "Complete", IF(OR(COUNTIF(CHILDREN(), "Not Started") = COUNT(CHILDREN()), COUNTIF(CHILDREN(), "Not Started") + COUNTIF(CHILDREN(), "") = COUNT(CHILDREN())), "Not Started", "In Progress")))