RDLC: How to print multiple tables in one report

Posted by Eduardo Molteni on Stack Overflow See other posts from Stack Overflow or by Eduardo Molteni
Published on 2010-04-28T13:28:34Z Indexed on 2010/05/03 13:08 UTC
Read the original article Hit count: 778

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.

© Stack Overflow or respective owner

Related posts about rdlc

Related posts about reportviewer