Filter: display parent tasks
You can apply the task filters below to display working tasks. Working tasks are tasks that can be worked independently and are not parent tasks to other tasks. In one example, a filter identifies children tasks that could be parents themselves. In this case, they are not working tasks.
- If you consider adding more than one filter to a report, we recommend that you add all your filters using the report builder interface, and clicking Switch to Text Mode after all the other filter rules have been added. Then, you can add the code for the parent task filter as noted above.
- We also recommend that you add a grouping for Project Name to make the report easier to read. For more information about adding groupings to your reports, see the article Groupings overview in Adobe Workfront.
Access requirements
You must have the following access to perform the steps in this article:
*To find out what plan, license type, or access you have, contact your Workfront administrator.
Display tasks with no children (they could have a parent)
You can apply the following filter to a task report to display tasks with no children. They could have parents of their own and be children of other tasks.
-
From the Main Menu , click Reports.
-
Click New Report.
-
Select a Task Report.
-
Click Filters.
-
Click Add a Filter Rule.
-
In the Start typing field name … line, start typing Number of Children.
-
Select Equal (Case Sensitive) for your modifier, then enter 0 for the number of children.
Or
Click Switch to Text Mode, and in the text editing window, copy and paste the following text:
code language-none numberOfChildren=0 numberOfChildren_Mod=eq
-
Click Save + Close.
This pulls a report for all tasks which are working tasks in your system. Some of these tasks could have a parent, but they are not parent tasks themselves.
Display tasks with parents (they could have children)
You can apply the following filter to a task report to display tasks with parents, meaning they are children tasks. However, these tasks could also have children of their own because the filter does not exclude their children. Children tasks that are also parents for other tasks are not considered working tasks.
-
From the Main Menu , click **Reports.
-
Click New Report.
-
Select a Task Report.
-
Click Filters.
-
Click Add a Filter Rule.
-
In the Start typing field name … line, start typing Parent ID.
-
Select Is Not Blank for your modifier.
Or
Click Switch to Text Mode, and in the text editing window, copy and paste the following text:
parentID_Mod=notblank
-
Click Save + Close.
This pulls a report for all tasks in your system that have parents and are children tasks of those parents. Some of these tasks could be a parent themselves.
Display tasks with no children and no parents (standalone tasks)
You can apply the following filter to a task report to display standalone working tasks. These tasks don’t have a parent and they have no children of their own.
-
From the Main Menu , click Reports.
-
Click New Report.
-
Select a Task Report.
-
Click Filters.
-
Click Add a Filter Rule and in the Start typing field name … line start typing Number of Children select Equal (Case Sensitive) for your modifier, then enter 0 for the number of children.
-
Click Add another Filter Rule and in the Start typing field name … line start typing Parent ID, then select Is Blank.
Or
Instead of steps 6-7, click Switch to Text Mode and in the text editing window, copy and paste the following text:
code language-none numberOfChildren=0 numberOfChildren_Mod=eq parentID_Mod=isblank
-
Click Save + Close.
This pulls a report for all tasks in your system that have no parents nor children. These are standalone working tasks.