I got two tables, Table A & Table B
I want to put all items from Table A and Table B into the report. Both tables has
session ID field which will have same value, rest of the fields are different.
I did a EQUAL join on Table A with Table B to get all the records from Table A and from table B.
Then in the detail section of the report, inserted the fields from
both table. eg.
// fields from table A
itemID itemDescription Location Qty
// fields from table B
itemID itemDescription Location Qty
It is grouped by table1.ItemID and table2.itemID.
The result I get is: for each record in table A, all records from table B shows up.
Seems like this is not the right process.
Is there a simpler way to get all records from both tables without getting duplicate
records? Thanks a lot.
I want to put all items from Table A and Table B into the report. Both tables has
session ID field which will have same value, rest of the fields are different.
I did a EQUAL join on Table A with Table B to get all the records from Table A and from table B.
Then in the detail section of the report, inserted the fields from
both table. eg.
// fields from table A
itemID itemDescription Location Qty
// fields from table B
itemID itemDescription Location Qty
It is grouped by table1.ItemID and table2.itemID.
The result I get is: for each record in table A, all records from table B shows up.
Seems like this is not the right process.
Is there a simpler way to get all records from both tables without getting duplicate
records? Thanks a lot.