I have been fighting with tying these two tables together for a couple of days. I have two tables that contain part numbers. One table contains what the technicians current stock is set at.
Example Item # Min Max on hand qty
A12345 2 4 5
This table is being filtered from a form for date and tech name.
The second table contains a sum by Item # of the parts used by the tech.
Example Item # SumofQty
A123456 4
The challenge is that I need to be able to combine these two tables and have all item #'s show up so I can set criteria as:
Min Max OnHandQty SumOfQty
>0 or >0 or >0 or >0
Where I run into the problem is that both tables do not contain all the Item #'s of the other table and regardless of the type of join I select I am dropping Item #'s from one table or another. The only solution I came up with which Im not even sure is possible is to sum how tell the second table to insert a zero when it doesnt have a record to match table one.
Any suggestions?
Example Item # Min Max on hand qty
A12345 2 4 5
This table is being filtered from a form for date and tech name.
The second table contains a sum by Item # of the parts used by the tech.
Example Item # SumofQty
A123456 4
The challenge is that I need to be able to combine these two tables and have all item #'s show up so I can set criteria as:
Min Max OnHandQty SumOfQty
>0 or >0 or >0 or >0
Where I run into the problem is that both tables do not contain all the Item #'s of the other table and regardless of the type of join I select I am dropping Item #'s from one table or another. The only solution I came up with which Im not even sure is possible is to sum how tell the second table to insert a zero when it doesnt have a record to match table one.
Any suggestions?