문제

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.

도움이 되었습니까?

해결책

Method 1

Handle it in SSRS

  1. Create a new parent group

  2. Make a custom group expression

    =Floor((RowNumber(Nothing)+9)/25)

  3. Under Group properties go to page break option and select the option for page break between each group.

Method 2

Handle it in Sql.

  1. Create a custom row number using partition function and using similar logic as group expression.

  2. Group By new row Number

  3. Do the page break between the groups.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top