Repeating tablix header on each page, but want to change heading on repeated rows second page?

The problem is that the group header is formatted only once per group and simply repeated on each page. For instance, add the following code to your report in the custom code (right-click report, choose Properties and select the Code tab).

Up vote 0 down vote favorite share g+ share fb share tw.

I have an SSRS report with a simple tablix control where (using advanced mode for row groups / column groups) I've set one of the rows to repeat on each page. I was hoping that when a heading is repeated on a new page I could use an expression to change the column heading to the original column heading plus some extra text (for e.g. On page one the heading would be 'heading' but on page two the heading would be 'heading cont..'). Is this possible and if so how would I go about accomplishing this?

Reporting-services ssrs-2008 ssrs-reports ssrs-tablix ssrs-grouping link|improve this question edited Feb 29 at 1:56 asked Feb 29 at 1:18Michael648217 100% accept rate.

The problem is that the group header is formatted only once per group and simply repeated on each page. For instance, add the following code to your report in the custom code (right-click report, choose Properties and select the Code tab): Dim Ctr As Integer Public Function ShowCtr As Integer Ctr = Ctr + 1 ShowCtr = Ctr End Function Then add this formula to a cell in the group header: =Code. ShowCtr You'll see that the value is the same for each group header on each page for that group - it doesn't get recalculated every time it prints.

So we can't use the group header. Chris Hays has a way to do this using the table header on his blog: "Continued" Header on Subsequent Pages.

Appreciated, definitely have me headed in the right direction. Thank-you – Michael Feb 29 at 4:04.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions