Hello,
I need some help with a formula, if it is even possible.
Scenario:
Overall Project: checkbox column Level = 1 or 2
Exec Report Activity: checkbox column Level = 3, 4, 5, etc.
Roadmap Report: checkbox column
Is it possible to have a formula search for a checked box in the Overall Project column (Overall Project Check also indicates that it is a parent row) and then look at the children rows in the Exec Report Activity column for any checked boxes, resulting in a check in a new column called Reporting?
I only want a check in the Reporting column if the parent row has the Overall Project column checked and a child
row (and child of child rows) has the Exec Report Activity column checked.
I have been trying variations of this formula without success.
=INDEX(ANCESTORS([Overall Project]:[Overall Project], 1, IF(AND([Exec Report Activity]@row, 1), 1)
The below formula works but only for the children at level 3, it does not work for children of children (level 4 and up).
=IF(AND(PARENT([Overall Project]@row) = 1, [Exec Report Activity]@row = 1), 1)
In the screenshot example, I would like a formula that will also check the boxes that are in red outline
Any assistance you can offer is appreciated.
Thank you!