i have two data sources - sample of some fields from each source:
Common link between the two tables is the ApptID.
Source 1 -Table 1 - ApptID , Date, Time, Name, Address, Phone
Source 2- Table 2 - ApptID, Comments, Actions
Not all records in table 1 would have a related record in table 2
I am trying to display related records from both tables as single rows in a data table, so something like this:
ApptID , Date, Time, Name, Address, Phone, Comments, Actions
and if no related records in table 2 then Comments and Actions in the data table would be blank.
I understand i need to change the items in my data table? but just how? thanks