Formula to show only certain parent row names
Hello! I have figured out how to specify if a row is a parent/child row (we call them Project/Tasks).
I am trying to find a formula that will automatically pull from a specific parent hierarchy. In this case, it will always be the parents that have only been indented once (rows 22, 31, and 38). Rows 32 through 37 show what is currently a manual process, and row 23 through 30 is my attempt so far to automate this.
I can manually tell each row which parent row to pull from (=[Task Name]$22), but this is still very time consuming and needs daily maintenance when new rows are added.
=PARENT([Task Name]@row) only pulls the immediate parent name. Is there a way to formulate which parent I want it to pull a name from?
Thanks!
Best Answer
-
Ok. What if we do this (column formula):
=IF(COUNT(ANCESTORS([Task Name]@row))>1, INDEX(ANCESTORS([Task Name]@row), 2))
I've never needed the first column reference before, but maybe it is just being picky for some reason.
Answers
-
Try this:
=IF(COUNT(ANCESTORS())>1, INDEX(ANCESTORS(), 2))
-
Thank you! Unfortunately, this returned a blank cell
-
Where exactly are you putting the formula?
-
In the "Bucket Name" column
-
On which row(s)?Just realized I forgot the column reference. Sorry about that.
=IF(COUNT(ANCESTORS())>1, INDEX(ANCESTORS([Task Name]@row), 2))
-
All of them? Maybe I don't understand the question
-
See my last comment again. I was just editing it. I forgot to include the column reference. sorry about that.
-
Still returns a blank cell 😢
-
Try setting it as a column formula so we can see where exactly it is showing up.
-
-
Ok. What if we do this (column formula):
=IF(COUNT(ANCESTORS([Task Name]@row))>1, INDEX(ANCESTORS([Task Name]@row), 2))
I've never needed the first column reference before, but maybe it is just being picky for some reason.
-
THANK YOU SO MUCH!!!! 🌟🌟🌟🌟🌟
That solved it. Appreciate your help SO much!
-
Happy to help. 👍️
-
Hope this is ok to ask, is there a similar formula to Indicate in the "Task Type" column those same rows as "Site", but all other parent tasks as "Projects", and all children as "Task"? The original formula I was using didn't account for more than one hierarchy.
=IF(COUNT(CHILDREN()) > 0, "Project", "Task")
I tried a few different things with your formula, but since tasks are varying levels of ancestors/children, it's not consistent.
-
Try something like this:
=IF(COUNT(ANCESTORS([Task Name]@row)) = 1, "Site", IF(COUNT(CHILDREN([Task Name]@row)) = 0, "Task", "Project"))
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.9K Get Help
- 441 Global Discussions
- 139 Industry Talk
- 471 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 68 Community Job Board
- 496 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!