I have a parent group and multiple child elements in Tablix of an RDLC report. The child element count is not fixed for some parents and it goes on to the next page also.
Currently, the output looks as follows (note that my RDLC Report is present in services as a .NET solution):
page 1 start here
Parent Group 1 name
child group 1
child group 2
Parent Group 2 name
child group 1
child group 2
page 2 start here
child group 3
child group 4
Parent Group 3 name
child group 1
child group 2
But I want the output like so:
page 1 start here
Parent Group 1 name
child group 1
child group 2
Parent Group 2 name
child group 1
child group 2
page 2 start here
Parent Group 2 name
child group 3
child group 4
Parent Group 3 name
child group 1
child group 2
How can I achieve this? I don't want each parent group on separate pages. By that, I mean that I don't want to use the Page Break property between each instance of groups.
My main objective is that I want my parent group name to repeat on each page if my child elements are expanding more than one page.