rdlc report in vs2010, how do i repeat column header on every page?

Viewed 39272

How do I repeat column header (captions) in RDLC reports?

It says here http://msdn.microsoft.com/EN-US/library/735D1EE7-3C89-46D8-A346-504DB10F33E1.aspx#TableNoGroups:

To repeat or freeze column headings for the tablix member, select the static row that is labeled (Static). The properties pane displays the properties for the selected tablix member. By setting properties for this tablix member, you can control how the first row repeats or stays in view.

However I've tried turning "RepeatOnNewPage" and "FixedData" on and off, and nothing happened (the column header still showed up only in first page). I'm using VS2010, thanks!

4 Answers

If u want to display Tablix header more than 1 page(s) in Report the followings things to be Observed (example)

  1. Just click once your table
  2. After select your table you will see the Row Groups and Column Groups Portion
  3. On the End of Right Side of Column Groups part you will see the down Arrow mark, just click arrow mark and select "Advanced Mode".
  4. In Row Groups Part: *Static and other one is Details will be there *click once again static in Row Groups and press F4 and you will see the property window and make Change to "True" for "RepeatOnNewPage" Property.
Related