I am trying to build a local web report that contains 2 tables per page. Each of these tables is bound to a different datasource.
Each table needs to contain a defined number of rows ( as in the example below) - if there is no data the rows will be empty. In the case where one of the tables has more data - I will always need to display a page break after the second table, so that the data can be displayed on the next page.
Page1
Table1| heading1 | heading2 | heading3 |
| 1 | 2 | 3 |
Table2
| heading1 | heading2 | heading3 |
| 1 | 2 | 3 |
| 1 | 2 | 3 |
Page2
Table1
| heading1 | heading2 | heading3 |
Table2
| heading1 | heading2 | heading3 |
| 1 | 2 | 3 |
| 1 | 2 | 3 |
I think it is a matter of somehow grouping the 2 tables together and then setting the paging - but I don't know how to do it. I have tried all sorts of things - but cannot get this to work. Can anyone help!
Thanks
Jane

Grouping tables and paging