Pedram
Pedram

Reputation: 6508

How to Visible Group Header While Scrolling in Tablix Report

While working with Tablix Report I want to visible Group header while scrolling

I tried Fixed Data = True but not working for me. BTW, First header row is working fine by changes of show scroll bar. (FixedData property to True in Advanced Mode) but not the this one row.

enter image description here

Kindly provide me the solution.

Upvotes: 1

Views: 368

Answers (1)

Pete Rennard-Cumming
Pete Rennard-Cumming

Reputation: 1618

In SSRS 2008 R2, I managed a workaround using subreports.

  • Make a report that shows the data for a single group, based on a parameter.
    • Put all the headers you want on this report's tablix, and make them fixed with FixedData = True.
    • Use the parameter to set what will appear in the group-specific header text.
  • Make a separate report that will get every group.
    • Create a table grouped by your group, with one cell.
    • Put a Subreport in the cell, and pass the group to the subreport's parameter.

Main report and sub-report

This worked for me in the Visual Studio preview, and viewing a deployed version on IE and Chrome, and hopefully will work in your environment too.

The catch is you'll see the main report header repeated for each group. However I tried to add this to the main report and it seemed to confuse matters, functioning differently in preview, IE and Chrome.

enter image description here

Upvotes: 1

Related Questions