Formula for Showing Next Task and Owner in the Parent Row
Hello,
I'm looking for a way to show the next task and owner of that task in the parent row heading.
Example:
The formula is needed in the Parent Row of the Next Task column. It pulls the next task coming up based on date. I'm assuming a second formula is needed for the owner column where it will match the owner of the next task.
Any help would be greatly appreciated!
Thanks.
Best Answers
-
Try this adjustment:
=IFERROR(INDEX(CHILDREN([Task Name]@row), COUNTIFS(CHILDREN(Finish@row), @cell< TODAY()) + 1), "All Tasks Complete")
-
I would suggest not worrying about the date at all and just using "Complete".
=IFERROR(INDEX(CHILDREN([Task Name]@row), COUNTIFS(CHILDREN(Status@row), @cell = "Complete") + 1), "All Tasks Complete")
Answers
-
You would use something like this:
=IFERROR(INDEX(CHILDREN(Task@row), COUNITFS(CHILDREN(Start@row), @cell< TODAY()), "All Tasks Complete")
-
Hey Paul, thanks for the response and the help! I really appreciate it.
That gives me an #UNPARSEABLE. I tried to fix it, but couldn't get it right.
Let me try asking it a different way...
Adding in some additional details might help make the desired solution more clear. I'm looking to add the next task that is due into the VNT column at the parent level.
I would also like to add the owner of that task into the Owner column at the parent level.
As highlighted below. I hope that helps clarify things.
-
It looks like the column name has changed from Task to Task Name. Try updating the formula to include the column names you are actually using in the sheet.
-
This is where I'm at:
=IFERROR(INDEX(CHILDREN([Task Name]@row), COUNITFS(CHILDREN(Finish@row), @cell< TODAY()), "All Tasks Complete")
-
Looks like I also fat fingered the COUNTIFS function.
=IFERROR(INDEX(CHILDREN([Task Name]@row), COUNTIFS(CHILDREN(Finish@row), @cell< TODAY()), "All Tasks Complete")
-
Now getting a #INCORRECT ARGUMENT SET
-
I need more coffee...
=IFERROR(INDEX(CHILDREN([Task Name]@row), COUNTIFS(CHILDREN(Finish@row), @cell< TODAY())), "All Tasks Complete")
-
EDIT**
Haha! That did work, but is pulling the first task, not the next task due. I'll keep chewing on it, but any suggestions?
And for the matching owner of the task to show in the Owner Column parent row...that has to be similar, correct?
-
@Paul Newcome - Any additional suggestions from the comment above?
-
Are you wanting to go based on date or percent complete?
-
Date
-
Try this adjustment:
=IFERROR(INDEX(CHILDREN([Task Name]@row), COUNTIFS(CHILDREN(Finish@row), @cell< TODAY()) + 1), "All Tasks Complete")
-
That did it, Paul! Thank you very much!
Huge Help!
Luke
-
Happy to help. 👍️
-
Ran into a snag when using this on my live data. Not sure what is happening as it worked on my test sheets.
The current formula is not pulling the task that it should be. See below:
Maybe another condition needs to be added?
Help Article Resources
Categories
- All Categories
- 14 Welcome to the Community
- Customer Resources
- 64.8K Get Help
- 434 Global Discussions
- 138 Industry Talk
- 470 Announcements
- 4.9K Ideas & Feature Requests
- 129 Brandfolder
- 148 Just for fun
- 65 Community Job Board
- 486 Show & Tell
- 33 Member Spotlight
- 2 SmartStories
- 300 Events
- 36 Webinars
- 7.3K Forum Archives
Check out the Formula Handbook template!