Reputation: 99
I have developed a one page report that has 4 tables on it. I am happy with this result:
This is shown for one district. (district = '002') The dataset only has the one district selected. I want to select multiple districts (a SQL field) in the dataset and have multiple pages representing one district per page. So, to state in a different way, there are about 10 districts so I want to have 10 pages just like this one with one district per page. It seems like there should be some sort of grouping option so I can show this page for each district. I'm new to SSRS so I'm probably missing something obvious. Thanks!
Upvotes: 2
Views: 6452
Reputation: 6034
This set of tables can be repeated for each selected district with one set on each page. To achieve this, you can take advantage of nested tables.
district
.Rectangle
. This is a way of keeping the formatting of the other tables in tact and handle them all together.Now the small table will repeat the entire contents of the rectangle for each district and you get copies of the entire report on separate pages.
Upvotes: 3