Hi, I have the following formula which is working fine:
SELECT SUM(ItemPrice) AS [Total Price], CustomerID, SUM(SalesTax) AS [Sales Tax]
FROM tblShutterbugOrder
WHERE (CustomerID = @CustomerID) AND (Paid = 0)
I need to add a 4th column that will return the sum of [ItemPrice] + Sum of [salestax]. Everything I try gives my syntax errors.
Thanks,
Leesha