OleDbConn.ole = "SELECT ProductCode, Description, Quantity, UnitPrice, (Quantity * UnitPrice) ExtendedPrice FROM SalesReturnItem sri INNER JOIN Product p ON p.ProductNo = sri.ProductID WHERE Sri.InvoiceNo = "
+ invoiceNo + " ORDER BY Description ";
Whenever i excute this query i get the following error-
Syntax error (missing operator) in query expression '(Quantity * UnitPrice) ExtendedPrice'.
please help