1

I had a problem with SSRS 2008 R2 reports where tablix headers were not repeating on PDF and Word exports...they would only show on the first page.

So I followed the nice directions on this post:

stackoverflow solution to tablix header not repeating on all pages

So now it works, but only on PDF reports. My tablix header rows only repeat for PDF, and not for WORD export. I followed directions to the letter. Anyone have any ideas ?

Community
  • 1
  • 1
dars
  • 359
  • 2
  • 3
  • 11
  • The directions I followed at the link I provided were the ones that were marked as the Answer – dars Aug 12 '16 at 15:02

1 Answers1

1

This is a known limitation in Word and pagination will not work. Here is a link that details this limitation - https://technet.microsoft.com/en-us/library/dd283105(v=sql.105).aspx#WordLimitations

Word does not repeat header rows on page two and greater, although you set the RepeatOnNewPage property of the static header row in a tablix (table, matrix, or list) to True. You can define explicit page breaks in your report to force header rows to appear on new pages. However, because Word applies its own pagination to the rendered report exported to Word, results might vary and the header row might not repeat predictably. The static header row is the row that contains the column headings.

VKarthik
  • 1,379
  • 2
  • 15
  • 30