R
Rene
I have following query which calculates total of quantity of all records
with same ID:
SELECT tblInventory.ID, Sum(tblInventory.Quantity) AS SumOfQuantity...
In anothet table I have a field [Required] which is related to ID.
I would like to get:
Shortage: [Required]-[SumOfQuantity]
But then it makes it an Parameterquery.
Is it not possible to make a reference to [SumOfQuantity] in the same
Selectquery?
Or do I have to make a second query for this ?
Or use a recordset ?
Rene
with same ID:
SELECT tblInventory.ID, Sum(tblInventory.Quantity) AS SumOfQuantity...
In anothet table I have a field [Required] which is related to ID.
I would like to get:
Shortage: [Required]-[SumOfQuantity]
But then it makes it an Parameterquery.
Is it not possible to make a reference to [SumOfQuantity] in the same
Selectquery?
Or do I have to make a second query for this ?
Or use a recordset ?
Rene