repeating report headers in all pages of report in ssrs 2008

  • Good morning guys, i have a report in ssrs 2008, i have selected the static properties of the row group, fixeddata;true, keepWithGroup;After,RepeatOnNewPage;True but the headers only repeat on the first page while scrolling and does not repeat on the last two remaining pages of the report, how do i go about this for it to repeat on all the pages while scrolling

  • You need to go into the .RDL code of your report, in that search for <TablixRowHierarchy> which has all your <TablixMembers>. You need to make sure here that each of your report pages is having repeated header.

    --VT

  • ok thanks i appreciate your answer ll give it a try and tell you how it works

  • am looking at the code and it seems ok what do i need to next

  • where you find <KeepWithGroup>After</KeepWithGroup>

    insert the below code with it:

    <RepeatOnNewPage>true</RepeatOnNewPage>

    <KeepTogether>true</KeepTogether>

    and it should work for you.

    --VT

  • Thank you, but i have tried that and it doesnt still work nothing has changed any more ideas

  • Did you also try changing the properties of Tablix (from Design) to:

    RepeatColumnHeaders/RepeatRowHeaders ->True

  • where do i do that please

Viewing 8 posts - 1 through 7 (of 7 total)

You must be logged in to reply to this topic. Login to reply