0

I currently have a report that consists of a single table/tablix that contains company name, year 1 revenue, and year 2 revenue. The table is sorted by year 1 revenue descending. The report often returns several hundred company names however. Is there a way to only display 10 records at a time and enable a paging option to then move on to the next group? I am using Report Builder 3.0.

Cœur
  • 37,241
  • 25
  • 195
  • 267
Tom
  • 191
  • 1
  • 15
  • Possible duplicate of http://stackoverflow.com/questions/6200628/ssrs-page-break-on-tablix-with-rownumber-just-one-row-group-and-no-group-expres and http://stackoverflow.com/questions/19003153/how-to-add-ssrs-page-break-after-65536-rows-counting-group-header-footer – StevenWhite Jun 09 '16 at 20:35

1 Answers1

-2
  1. Create a row group on your "details" row and hide it. Set the group on to:

    Ceiling(RowNumber(Nothing))

It basically assigns whole numbers 1,2,3..to every consecutive chunk of 10 records.

  1. Next, in the page break options configure the page to break at the end of every instance of group.

Ta-da! Pagination done.

SouravA
  • 5,147
  • 2
  • 24
  • 49
  • Unfortunately this isn't quite right as it gives each individual returned row an individual group number and its paginating on each unique number – Tom Jun 09 '16 at 20:11