I would like to return a specific value in a parent row when all the values of the children is equal to a specific value.
I would like the parent row to automatically show complete as soon as all the children rows are completed. The cell can be blank if all the values are not complete.
I used the following formula to get the result that I want:
=IF(COUNTIF(CHILDREN(), "Not started") = 3, "Not started", IF(COUNTIF(CHILDREN(), "In progress") > 0, "In progress", IF(COUNTIF(CHILDREN(), "Complete") = 3, "Complete", IF(COUNTIF(CHILDREN(), "Complete") > 0, "In progress"))))
My problem is that you have to physically go and change this formula everytime you add or delete a child row. Is it possible to have another formula that do not use the Countif function?