Hi,
I have a working formula in my sheet that works beautifully to rollup/count the status within the sheet:
=IF(COUNTIF(CHILDREN(), "Complete") = COUNT(CHILDREN()), "Complete", IF(COUNTIF(CHILDREN(), "Not Started") = COUNT(CHILDREN()), "Not Started", IF(COUNTIF(CHILDREN(), "In Progress") > 0, "In Progress", IF(COUNTIF(CHILDREN(), "Not Started") > 0, "In Progress", IF(COUNTIF(CHILDREN(), "Blocked") > 0, "In Progress")))))
I want this same thing in Sheet Summary for the parents of my Status column. How do I build the sheet summary formula to do this same function but just by doing it to the parent rows of my Status column?