I'm trying to dynamically change a cell's value depending if a checkbox is checked or not. Directors of a project would like to know what stage a project is at and if that stage is on target or not. Where I'm running into trouble is the directors only care about the Parent Task and not the child tasks.
This is what I have so far but obviously, this does not address the Parent Task only.
=INDEX(Done:[Task Name], MATCH(false, Done:Done), 2)
What I would like to have is something like the below but PARENT() doesn't work when the entire column is referenced.
=INDEX(Done:[Task Name], MATCH(false, PARENT(Done:Done)), 2)
Hoping someone can point me in the right direction.
Thanks in advance