Search code examples
c#visual-studio-2008reportviewerrdlc

How to limit number of rows displayed in a rdlc report table?


In my rdlc report, I used Report Item Table only. When I generate report there has so many rows. How to define the row counts for page? I mean I want to show 10 rows in one page.

Thanks,


Solution

  • You want to create a parent group to your current rowset and set its group expression to =Int((RowNumber(Nothing)-1)/10. In the Group Properties you then check the Page Breaks option to "Between groups", (and toggle the visibility).
    Maybe this MSDN link could be a starting point for you.