Hi,
I built a report that currently pulls from one table and uses the following code to populate it.
VB Code:
  1. Dim cr As New ReportDocument
  2.             cr.Load(strAppPath & "\Reports\SchDaysPerDept.rpt")
  3.             cr.SetDataSource(ds.Tables("tblVacationTaken"))
  4.  
  5.             CrystalReportViewer1.ReportSource = cr

How can I populate this if the data is from two tables?
Thanks