N
Newbie
Hi
I have a recordset that is based on a sum query - because descriptions have
changed I can't include the description in the sum query as it will give me
the following (I assume I have to have GroupBy for the descripton field)
stockcode description qty
abc desc1 100
abc desc2 100
The result I am after is
abc desc2 200
Is it possible to take the recordset and add a field to each record for the
description based on another query eg
SELECT rs.StockCode, InvMaster.Description
FROM InvMaster INNER JOIN rs ON InvMaster.StockCode = rs.StockCode;
If yes how do I do this?
I have a recordset that is based on a sum query - because descriptions have
changed I can't include the description in the sum query as it will give me
the following (I assume I have to have GroupBy for the descripton field)
stockcode description qty
abc desc1 100
abc desc2 100
The result I am after is
abc desc2 200
Is it possible to take the recordset and add a field to each record for the
description based on another query eg
SELECT rs.StockCode, InvMaster.Description
FROM InvMaster INNER JOIN rs ON InvMaster.StockCode = rs.StockCode;
If yes how do I do this?