How to set 20 record per page when i rendering reports in SSRS 2008?

前端 未结 2 1736
慢半拍i
慢半拍i 2020-12-20 05:53

I have created Report in SSRS-2008 using Tablix Data region.

My dataset returning 1000 rows. When rendering into pdf i have to display 20 rows per page

相关标签:
2条回答
  • 2020-12-20 06:03

    Go to the properties and find:

    Report, Page--->InteractiveSize---> Height

    Change the height properties by 5.5 and you will be able to show 20 rows per page.

    0 讨论(0)
  • 2020-12-20 06:17

    First result on Google for "SSRS Items per page" was: http://www.sqlservercentral.com/Forums/Topic490774-147-1.aspx

    From that discussion thread, it looks like creating a group and then grouping on =Ceiling((RowNumber(Nothing)) / 20) will give you what you want. You'll need to change the group properties to start a new page at each instance of the group.

    As for "step by step," I'm not sure what you are hoping for: do you need help creating a report? Creating groups? Opening Visual Studio?

    0 讨论(0)
提交回复
热议问题