I have a report in ssrs 2008 including 2 different tables.
TABLE A TABLE B
Both table are grouped by Name by adding a rowGroup. Note that there is also a page break "between each instance of the group" is enabled. So, When I run this report, it is running like:
------Page 1------
Name:X Name:X
TABLE A TABLE B
------Page 2------
Name:Y Name:Y
TABLE A TABLE B
------Page 3------
Name:AllName Name:AllNames
TABLE A TABLE B
However, I would like to put the table in an order. When Table A ends for all its group, then I want Table B to start. Example:
------Page 1------
Name:X
TABLE A
------Page 2------
Name:Y
TABLE A
------Page 3------
Name:AllNames
TABLE A
------Page 4------
Name:X
TABLE B
------Page 5------
Name:Y
TABLE B
------Page 6------
Name:AllNames
TABLE B
How can I provide this? Any help would be appreciated!