is it possible to use two data source in one data report? if yes, how is it? thanks, ishee
If you mean two data sources at the same time, then no. But you can set the reports datasource property just prior to running the report with any matching data source. Code: set datareport1.Datasource = rs1 datareport1.Show vbModal set datareport1.Datasource = rs2 datareport1.Show
set datareport1.Datasource = rs1 datareport1.Show vbModal set datareport1.Datasource = rs2 datareport1.Show
Forum Rules