Hello,
I am trying to simply roll-up my children status' to their parent row. When using this formula:
=IF(COUNTIFS(CHILDREN(), @cell = "Complete") = COUNTIFS(CHILDREN(), OR(@cell = "", @cell <> "")), "Complete", IF(COUNTIFS(CHILDREN(), @cell = "Not Started") = COUNT(CHILDREN()), "Not Started", "In Progress"))
I receive "Unparsable".
My status column is set up with Not Started, In Progress and Complete. I've done this before but cannot for the life of my remember how to easily do this.
Any help is appreciated!