Hello - can anyone help me identify a formula that will automatically change the status of every deliverable's successors depending on the status of that deliverable.
So, for example, when line 4 in the example below is 'at risk' in the 'Status' column, I also need lines 6 and 7 to automatically turn to 'yellow' in the same column (far right).
I have the 1st part working - when a deliverable is 'at risk', the status turns yellow, but I am unable to determine a formula for making all of its successors also turn yellow.
Here 's the formula I am currently working with, as well as some relevant notes:
- Successor Status Column: IF(AND(Status@row = "at risk", Successors@row <> ""), IF(HAS([Successor 1]:[Successor 10], [Row #]@row), "Yellow"))
- I only want a deliverable to turn 'yellow' in the 'Successor status' column if it has successors listed in the 'Successors' column. Otherwise, I want it to stay blank.
- Columns 'Successor 1', 'Successor 2'โฆ through 'Successor 10' are helper columns to itemize the 'Successors' columns
- When actually built, my plan will eventually have 6 hierarchies
Thank you, in advance, to everyone who takes some time to try to help!