Reputation: 10544
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!
Upvotes: 26
Views: 40470
Reputation: 1
If u want to display Tablix header more than 1 page(s) in Report the followings things to be Observed (example)
F4
and you will see the property window and make Change to "True" for "RepeatOnNewPage" Property.Upvotes: 0
Reputation: 121
I found my answer in the second set of instrucions on the page represented by the url below. I found this page by following a link on the page that deerchao provided a link to.
http://msdn.microsoft.com/EN-US/library/cc627566.aspx
Upvotes: 0
Reputation: 93
I have had this nagging issue in my bug list for months! I want to make it clear that KDrewiske gave me the solution so don't vote for me, but I can't seem to reply to deerchao's followup question. (Sorry, I'm new to the site)
In addition to KDrewiske's solution, I had to select the second row ('Details1' from the previous example) and turn KeepTogether to false.
I now get column headers on every page and can remove a pesky bug from my list!
Regards, bizzarry
Upvotes: 1
Reputation: 1549
I just had this same problem and found that you likely need to go a bit further from the standard properties (right-side dialog) into the Advance properties.
After selecting your Tablix, there should be a frame at the bottom showing Row Groups and Column Groups, with an arrow at the far right. Click the arrow and select advanced mode.
Now, the RowGroups section should show (Static) and (Details1), maybe more depending upon your Tablix. Select the static row and in the right-side properties window, there will be an option to RepeatOnNewPage.
After I did this, my column headers displayed as I expected.
Good Luck!
Upvotes: 68