I am trying to search the ancestors for any given cell and return the content of the ancestor if it meets specific criteria.
For example, if the Ancestor has the word "Chapter," I would like it to return all of the content from that Ancestor cell.
I've started with this formula, and I know the PARENT part is what's wrong. Unfortunately, I don't know what to use instead. (I don't know how to pull an Ancestor like you can a Parent.)
=IF(CONTAINS("Chapter", ANCESTORS([Task Name]@row)), PARENT([Task Name]@row))
Any help would be much appreciated!!