To add page break to a large result set:
In your scenario, you want to display 10 records in each
page, we can achieve it follow the steps below.
- Click the Details group in the Row Groups pane.
- From the Tablix member Properties pane, expand “Group”-> “PageBreak”.
- Set the “BreakLocation” to “End” and set the “Disable” property to the expression like below: =IIF(Globals!RenderFormat.Name = nothing, IIF((rownumber(nothing) mod 30) = 0,false,true), true) NOTE: this expression disable pagebreak when exporting.
No comments:
Post a Comment