4

I have a report that allows Finance to print off multiple invoices at the same time. The problem I'm running into is that they want the Bill To information repeated on each page of the invoice.

I have two groups set up on the report. Group A is grouped on Document Number. Group B is grouped on Line Item. It works perfectly fine when I running multiple invoices (multple document numbers), but I can't figure out how to get the information from Group A to repeat on the second (or third, etc.) page of the Invoice.

How can I get the Parent Group (Group A) to repeat on subsequent pages?

DForck42
  • 19,789
  • 13
  • 59
  • 84

2 Answers2

10

First, make sure you've enabled Advanced Mode in the Grouping section:

enter image description here

For each Group Header row, set the RepeatOnNewPage property to True.

enter image description here

enter image description here

This should do the trick - you might need to play around with it a bit more; in my experience it can be quite tricky to get everything correct.

For more detail see Repeat Header / Keep Header Visible in Tables in RS 2008.

Ian Preston
  • 38,816
  • 8
  • 95
  • 92
0

Under Design Pane - > Row Groups - > click on (static) - > Press F4 - > Properties window will pop up.

In the Properties window - >Set KeepWithGroup = After and RepeatOnNewPage = True.

If you want the header to be frozen while scrolling down the report, set FixedData = True.

Upriser
  • 77
  • 2
  • 13