Hello, let me start off by saying any assistance available is greatly appreciated!!!!
In our work schedule we use parent child hierarchy. Through the use of other community discussions, I found a formula that I could modify and use that would change the status of the parent row based on the overall statuses of the children rows. This is helpful and works (copy of working formula below) however there is a gotcha with it and we are stuck trying to get the formula modified to work correctly. The way we need it to work is when the row containing "MSI-Installation" is marked a status of "Cancelled" the parent row becomes "Cancelled" regardless of the statuses in the other rows, but if it is not "cancelled then follow the rest of the formula. (Screen shot of sheet below for example)
Any ideas how to modify the below working formula to use the "MSI-Installation" column as a priority or qualifier if you will?
WORKING Formula:
=IF(COUNTIFS(CHILDREN(), "Not Started") = COUNT(CHILDREN()), "Not Started", IF(COUNTIFS(CHILDREN(), "Cancelled") = COUNT(CHILDREN()), "Cancelled", IF(COUNTIFS(CHILDREN(), OR(@cell = "Not Started", @cell = "Not Needed", @cell = "Cancelled", @cell = "Canceled")) = COUNT(CHILDREN()), "Cancelled", IF(COUNTIFS(CHILDREN(), OR(@cell = "Completed", @cell = "Not Needed", @cell = "Cancelled", @cell = "Canceled")) = COUNT(CHILDREN()), "Completed", "In Progress"))))