If i have a data like this :
table A
PurchId | ItemId |
001 | A001 |
002 | B002 |
and Table B
ItemId | DeliveryDate |
A001 | 04/01/2014 |
A001 | 05/01/2014 |
how to unite two tables in 1 report like this?
PurchId | ItemId | DeliveryDate |
001 | A001 | 04/01/2014 |
001 | A001 | 05/01/2014 |
002 | B002 | (datenull) |
thank you
warm regards
Edo