Hello,
I have the following query that return the sum of prices.
"SELECT Sum(PartsList.CustomerPrice)AS Expr1 FROM PartsList INNER JOIN Items_Quote ON PartsList.ItemNumber = Items_Quote.ItemNumber WHERE (((Items_Quote.QuoteNumber)=" & QuoteRef & ")))"
I was not able to use the record set to read the value Expr1 and to assign it to a variable in the code.
Any help will be highly appreciated.