How to repeat table header on each page of rdlc when you have two tables in your report in VS2008

rdlc

I have two tables in my rdlc report. First table contains 7 rows (all are header) which are bind to dataset1. The next table contain the Group header, Details and Footer section which are bind to dataset2. I want to repeat the first table header rows on each page in my report.
Please suggest me the correct solution as I have already tried the options like – "Repeat on New Page Option", "Keep Together" and "Fixed Header" properties, but nothing happened.

Regards,
Anki

Best Answer

To repeat rows with column headings for a table with row groups

*In Design view, select the table. The Grouping pane displays the row groups.

*On right side of the Grouping pane, click the down arrow, and then click Advanced. The Grouping pane displays static and dynamic tablix members for each group. You can only set properties on a static tablix member.

*In the Row Groups pane, click the static tablix member for the row that you want to repeat. When you select a static tablix member, the corresponding cell on the design surface is selected, if there is one. The Properties pane displays the properties for the selected tablix member.

*Set the KeepWithGroup property in the following way:

*For a static row that is above a group, click After.

*For a static row that is below a group, click Before.

*Set the RepeatOnNewPage property to True.

*Preview the report. If possible, the row repeats with the group on each vertical page that the row group spans.

http://msdn.microsoft.com/EN-US/library/cc627566.aspx

Related Topic