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?
Asked
Active
Viewed 118 times
1 Answers
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
-
Thanks mate..That worked..I was trying to do it in the RDL which seems impossible.. – sujith Sep 19 '14 at 06:58