I have reviewed the formula helper and used their code and change it up a bit but not working as it should, when I change to blocked or on Hold the Parent is not changing, here is the code
=IF(COUNTIF(CHILDREN(), "Complete") = COUNT(CHILDREN()), "Complete", IF(COUNTIF(CHILDREN(), "In Progress") > 0, "In Progress", IF(COUNTIF(CHILDREN(), "Blocked") > 0, "Blocked", IF(COUNTIF(CHILDREN(), "On Hold") > 0, "On Hold", "Not Started"))))
I need it to do the following
If all children are complete than it should be complete
if any of the children are In progress it should be in progress
if any of the children are on hold it should be on hold
if any of the children are blocked it should be blocked.
If all of the children are not started it should be not started
Caroline