Hello,
I am trying to write a formula where my child row status roll up to the parent row for an auto update. My row values are listed below and how I want the logic to roll up:
Not Started - all children are “Not Started”
In Progress - all children are "In Progress", Ahead of Schedule", "Behind Schedule"
Complete - all children are “Complete” or “ Canceled”
Ahead of Schedule
Behind Schedule
Canceled
Based on responses I found in the Community, I can up with the below formula but it is not working.
=IF(COUNTIFS(CHILDREN(), "Not Started") = COUNT(CHILDREN("Not Started")), IF(COUNTIFS(CHILDREN(), "Complete") = COUNT(CHILDREN()), "Complete", “Canceled”), IF(COUNTIFS(CHILDREN(), "In Progress") = COUNT(CHILDREN()), “In Progress”. “ Ahead of Schedule”, “Behind Schedule”))
Any help would be appreciated! Thank you in advance!!!!
Dan