Reputation: 85
I am trying to keep header rows static while scrolling through the report in SSRS, Visual Studio 2012.
I have tried the following and it has not worked : Under Design Pane - > Row Groups - > click on (static) - > Press F4 - > Properties window will pop up.
In the Properties window - >Set KeepWithGroup = After and RepeatOnNewPage = True.
If you want the header to be frozen while scrolling down the report, set FixedData = True.
Upvotes: 0
Views: 2746
Reputation: 3399
If you want the header visible while scrolling, you need to go to (right click on tablix) Tablix Properties > General and check the option Keep header visible while scrolling. Then go to column/row groups in the advanced mode, chose your static row and set the Fixed Data mode to True
, Repeat on new page to True
and Keep with group to After
.
Here is prbably the best reference: KeepHeaderVisible
Upvotes: 1