Reputation: 1
I have two tables, let's say table A and table B. Both tables are dynamic in that they return different quantities of rows for each row group. Table A is grouped on columns A, B, C. Table B is grouped on the same columns A and B, but not C. So I have the following tables:
Column A and B are the same between both tables.
I want to place both tables on each page where each page is grouped by A. In other words, there will be a separate page for each value of column A with both tables appearing on each page.
I have tried doing this by embedding the two tables in a list but I get the static inner members error. I cannot put the tables into a header row because the number of rows is dynamic. Is there any way to do this in SSRS?
I am using SSRS 2008 R2.
Upvotes: 0
Views: 7323
Reputation: 6034
Since you want to group everything by Column A and have separate pages for it, let's use that as the starting point.
It should look like this:
So whatever rows or columns Tables A and B have, it will all be within the context of each instance of Column A.
Upvotes: 2