-1

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.

entpnerd
  • 10,049
  • 8
  • 47
  • 68
Gaurav
  • 1
  • 1
  • 1
    Based on the question, I don't see any difference between the existing output and the desired output. – entpnerd Jan 11 '19 at 07:15
  • 1
    in the desired output Parent Group 2 name is repeating on page 1 as well as page 2 which is not present in existing output. – Gaurav Jan 11 '19 at 08:02

1 Answers1

0

I think that you need to specify the RepeatOnNewPage property, as per this forum on the subject. If you need details on how to do this, see this StackOverflow answer on the subject.

entpnerd
  • 10,049
  • 8
  • 47
  • 68
  • i allready done this but by this way (i.e RepeatOnNewPage= true ) also i am not getting the proper output. – Gaurav Jan 21 '19 at 09:46