Display a fixed number of rows per page for an SSRS report
Follow these steps to display a fixed number of records per page First create Query and create dataset then insert table and add details in table. Add a Parent Group to the existing top level row group. The recently created Tablix doesn’t have a row group, so right click on Details (under Row Groups section), click on “Add Group” and then Parent Group . You can refer to the below image. Once you click on Parent Group, it will open a Tablix Group. In the Group By expression, enter =CEILING(RowNumber(Nothing)/25) where 25 is the number of records to be displayed per page. If you want to display 50 records then choose 50. In the expression I have used the Ceiling function (which returns the smallest integer greater than, or equal to, the specified numeric expression) and the RowNumber function (which performs a running count of rows within a specified scope). The “No...