Here's how you would set the datasource for each of the two tables. Instead of using .SetDataSource() for the entire data, just set each table individually to the specific table that you are using
Code:MainReport.Database.Tables("CompanyDetails").SetDataSource(DataTable1) MainReport.Database.Tables("ReportDetails").SetDataSource(DataTable2)




Reply With Quote