L
lmiller
I have developed this query for my 7th term inventory balances:
SELECT [INVENTORY R&D 7th].[PART #], [INVENTORY R&D 7th].[PART NAME],
[INVENTORY R&D 7th].[END BALANCE]
FROM [INVENTORY R&D 7th]
WHERE ((([INVENTORY R&D 7th].[END BALANCE])>0));
This query for my 8th term balances:
SELECT [INVENTORY R&D].[PART #], [INVENTORY R&D].[PART NAME], [INVENTORY
R&D].[END BALANCE]
FROM [INVENTORY R&D]
WHERE ((([INVENTORY R&D].[END BALANCE])>0));
I would like to combine them into 1 compelte inventory list. I would like
to list all part # that have a balance and if there are the same part # in
each of the 2 queries, I would like their balances added together . I
greatly appreciate any help you can give. I have this union query thus far:
SELECT [PART #],[PART NAME],[END BALANCE]
FROM [BEGINNING INVENTORY BALANCE 8TH]
UNION SELECT [PART #],[PART NAME],[END BALANCE]
FROM [INVENTORY R&D
when I hit run the part# and names list correctly but the balances for the
8th term do not list nor do the add together with the 7th.
Thank you in advance for you help!!!!!!
SELECT [INVENTORY R&D 7th].[PART #], [INVENTORY R&D 7th].[PART NAME],
[INVENTORY R&D 7th].[END BALANCE]
FROM [INVENTORY R&D 7th]
WHERE ((([INVENTORY R&D 7th].[END BALANCE])>0));
This query for my 8th term balances:
SELECT [INVENTORY R&D].[PART #], [INVENTORY R&D].[PART NAME], [INVENTORY
R&D].[END BALANCE]
FROM [INVENTORY R&D]
WHERE ((([INVENTORY R&D].[END BALANCE])>0));
I would like to combine them into 1 compelte inventory list. I would like
to list all part # that have a balance and if there are the same part # in
each of the 2 queries, I would like their balances added together . I
greatly appreciate any help you can give. I have this union query thus far:
SELECT [PART #],[PART NAME],[END BALANCE]
FROM [BEGINNING INVENTORY BALANCE 8TH]
UNION SELECT [PART #],[PART NAME],[END BALANCE]
FROM [INVENTORY R&D
when I hit run the part# and names list correctly but the balances for the
8th term do not list nor do the add together with the 7th.
Thank you in advance for you help!!!!!!