RDLC: How to print multiple tables in one report
- by Eduardo Molteni
I'm generating the RDLC XML schema and showing the report in the ReportViewer control. No problems there.
Now, I want a report with 2 tables, with 2 differents dataset.
Something like this gets generated:
<Body>
<ReportItems>
<Table Name="Table1">
....
</Table>
<Table Name="Table2">
....
</Table>
</ReportItems>
</Body>
But, when printed, both tables start from the top, printing one table over the other (not nice)
Is there a way to tell that Table2 should start after Table1?
Update: I've tried with List with a fake DataSource, but it does not work.