RDLC report: How can I repeat a group header on each page?
c#, rdlc
Solution
Here is the solution. When you don't have grouping in your report, to repeat the headers on other pages is easy. Click on Advanced Mode of property grid - check the property. Go to right panel and set `RepeatOnNewPage` on True and `keeptogether` 'After'. It is easy.
If you have grouping then it gets a little complicated:
- Select the tablix properties and select "repeat header rows on each page".
- Click on row groups and select "the top most static" and now click - `RepeatOnNewPage` -True and `KeepWithGroup` After.
Problem
How can I repeat a group header on each page? I have some group that has a lot of rows and thus could not be placed in one single page. I want the group header to put on each pages. I can repeat report-header to repeat on each page but dont know how to repeat group header. Also I am working on rdlc report (not rdl) report.