1

I have records for 3 weeks that needs to be displayed on an SSRS report 2 weeks per page. So my report would have 2 pages - first 2 weeks in the first page and 3rd week in the second page. How do I do this with a grouping expression?

sujith
  • 57
  • 5

1 Answers1

1

First, have a column(in your query or stored procedure) that indicates the fortnight period.

For example, let the column name be FortnightPeriod, which can contain values like 1st fortnight, 2nd fortnight.

Then group by that column in your rdl and add page breaks for the group.

kelsier
  • 4,050
  • 5
  • 34
  • 49