Sure. Create a 3rd query that joins them together (as though they were
tables), and use that query.
The SQL would look something like:
SELECT Query1.VendorID, Query1.ShipQty, Query2.RejectQty
FROM Query1 INNER JOIN Query2
ON Query1.VendorID = Query2.VendorID
--
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no private e-mails, please)
"Jaz" <(E-Mail Removed)> wrote in message
news:(E-Mail Removed)...
>I have 2 queries that provide the following information:
>
> Query 1
> Vendor ID
> Ship Qty
>
> Query 2
> Vendor ID
> RejectQty
>
> Is there a way to run these 2 queries and make 1 table with the following
> information?
>
> Vendor ID Ship Qty Reject Qty
>
>
> Thanks,
> Jasper
>
>