Like Following?WITH POTable ([PO#], [PO Date], [PO Line #], [Item #], Quantity) AS (SELECT 'PO1', '20150101', 1, 'Item 1', 1UNION ALLSELECT 'PO1', '20150101', 2, 'Item 2', 20), ShippingTable ([PO#], [ETA Date], [Line #], Waybill, [Ship Quantity]) AS (SELECT 'PO1', '20150130', 1, 'abc', 1UNION ALLSELECT 'PO1', '20150130', 2, 'abc', 15UNION ALLSELECT 'PO1', '20150215', 2, 'def', 5)SELECT POTable.[PO#], POTable.[PO Date], POTable.[PO Line #], POTable.[Item #], POTable.Quantity, ShippingTable.[ETA Date], ShippingTable.Waybill, ShippingTable.[Ship Quantity]FROM POTableRIGHT JOIN ShippingTable ON POTable.[PO#] = ShippingTable.[PO#] AND POTable.[PO Line #] = ShippingTable.[Line #]
-------------------------------------From JapanSorry, my English ability is limited.