Reputation: 105
I am working on a SSRS
report where I want to display 15 rows on the first page and 25 rows on the following pages. I have googled
and did not find any anything related to my problem.
Upvotes: 0
Views: 1228
Reputation: 6669
Method 1
Handle it in SSRS
Create a new parent group
Make a custom group expression
=Floor((RowNumber(Nothing)+9)/25)
Under Group properties go to page break option and select the option for page break between each group.
Method 2
Handle it in Sql.
Create a custom row number using partition function and using similar logic as group expression.
Group By new row Number
Do the page break between the groups.
Upvotes: 2