Grouping with Parent Rows in Report

Options

I would like to groups by quarter in a report, but keep the parents rows repeated in each quarter. Am I able to do that some how? When I use my quarter column to group all of the parent rows group at the bottom.

For instance, my parent rows are

Task 1

a - Q1

b - Q1

c - Q2


I want Task 1 to be broken into two groupings like below:

Task 1 (Group1 - Q1)

a - Q1

b - Q1


Task 1 (Group 2 - Q2)

c - Q2


Thanks!

Tags:

Best Answer

  • Paul Newcome
    Paul Newcome ✭✭✭✭✭✭
    Answer ✓
    Options

    You are going to need to include a helper column (that can later be hidden) on the source sheet that brings the parent row data into every row. Something along the lines of...

    =IF(COUNT(CHILDREN()) = 0, PARENT([Task Name]@row), [Task Name]@row)


    Then you can do an initial grouping on this helper column and then a secondary grouping based on the quarter.

Answers