Hi!
I want the Parent row to automatically change with the most recent Child Row status. I currently do this manually so I have to update the status in 2 different rows.
Right now I have this:
=IF(COUNTIFS(CHILDREN(), "Open") > 0, "Open", IF(COUNTIFS(CHILDREN(), "In Progress") > 0, "In Progress", IF(COUNTIFS(CHILDREN(), "In Verification") > 0, "In Verification", IF(COUNTIFS(CHILDREN(), "Ready for Verification") > 0, " Ready for Verification", "Defined"))))
However, I also have Child rows in Accepted status, but Accepted is not always the last stage. It would be better if the Parent Row would just update from the most recent Child change, but I can't figure that out.
Parent Rows are in grey.