Hello,
I have two tables orders and shopord
In my orders table I have the following fields
Item
Order
Qty
Date
In my shpord table I have the following fields
Item
OrderNM
QtyNM
DateNM
The problem is that both table have the same item numbers but not the same dates, not the same Orders and not the same qty
so if I query one to the other I get someting like this
But if I have more than one Order (using orders as primary table) then I get something like this
I tried to group them but that did not work well would there be a way to get just this
I appreciate any help!!
Thanks!!!
I have two tables orders and shopord
In my orders table I have the following fields
Item
Order
Qty
Date
In my shpord table I have the following fields
Item
OrderNM
QtyNM
DateNM
The problem is that both table have the same item numbers but not the same dates, not the same Orders and not the same qty
so if I query one to the other I get someting like this
Code:
Item Order OrderNM Qty QtyNM Date DateNM
0011 1234 ABC123 500 800 1/15/14 1/25/14
But if I have more than one Order (using orders as primary table) then I get something like this
Code:
Item Order OrderNM Qty QtyNM Date DateNM
0011 1234 ABC123 500 800 1/15/14 1/25/14
0011 1235 ABC123 200 700 1/31/14 2/03/14
0011 1236 ABC123 900 200 2/14/14 2/22/14
0011 1234 ABC123 500 800 1/15/14 1/25/14
0011 1235 ABC123 200 700 1/31/14 2/03/14
0011 1236 ABC123 900 200 2/14/14 2/22/14
0011 1234 ABC123 500 800 1/15/14 1/25/14
0011 1235 ABC123 200 700 1/31/14 2/03/14
0011 1236 ABC123 900 200 2/14/14 2/22/14
I tried to group them but that did not work well would there be a way to get just this
Code:
0011 1234 ABC123 500 800 1/15/14 1/25/14
0011 1235 ABC123 200 700 1/31/14 2/03/14
0011 1236 ABC123 900 200 2/14/14 2/22/14
I appreciate any help!!
Thanks!!!