R
Richard Horne
Hi Guys I have two tables, Orders and Order_Details which are queried in the
query below:
SELECT Orders.[Customer Name], Order_Details.OrderNumber,
Order_Details.Quantity, Order_Details.Price, Order_Details.ItemComplete,
[Quantity]*[Price] AS Total, Orders.Complete
FROM Order_Details INNER JOIN Orders ON Order_Details.OrderNumber =
Orders.OrderNumber
WHERE (((Orders.Complete)=No))
ORDER BY Orders.[Customer Name];
This query lists each customer with all their incomplete orders and the
quantity of goods ordered multiplied by the price of the item. Is there
anyway I can total up the TotalValue of orders for ecah customer?
So basically I'll want to see each customer's orders, the price and quantity
for each order, and then the total value of all their orders added up?
query below:
SELECT Orders.[Customer Name], Order_Details.OrderNumber,
Order_Details.Quantity, Order_Details.Price, Order_Details.ItemComplete,
[Quantity]*[Price] AS Total, Orders.Complete
FROM Order_Details INNER JOIN Orders ON Order_Details.OrderNumber =
Orders.OrderNumber
WHERE (((Orders.Complete)=No))
ORDER BY Orders.[Customer Name];
This query lists each customer with all their incomplete orders and the
quantity of goods ordered multiplied by the price of the item. Is there
anyway I can total up the TotalValue of orders for ecah customer?
So basically I'll want to see each customer's orders, the price and quantity
for each order, and then the total value of all their orders added up?