Concept Flow
Orders Table +----------+------------+------------+------------+----------+-------+ | Order ID | CustomerID | Order Date | Product ID | Quantity | Price | +----------+------------+------------+------------+----------+-------+ | 1001 | C001 | 2024-01-10 | P100 | 2 | 15.00 | | 1002 | C002 | 2024-01-11 | P101 | 1 | 25.00 | | 1003 | C001 | 2024-01-12 | P102 | 3 | 10.00 | +----------+------------+------------+------------+----------+-------+ Formula: SUM([Quantity] * [Price]) Steps: 1. Multiply Quantity by Price for each row 2. Sum all results to get total sales
This flow shows a simple sales data table and the calculation of total sales by multiplying quantity and price per order line, then summing all.