Explore standardized definitions, formulas and usage guidance for key ecommerce performance metrics.
Total Sales represents the overall revenue generated from all completed orders within a selected period. It serves as a key performance indicator of business health, reflecting the combined impact of marketing, pricing, product mix, and customer demand. Monitoring Total Sales helps assess growth trends, evaluate campaign effectiveness, and guide strategic decisions across sales, finance, and operations.
What's the total sales from yesterday?
SELECT SUM(net_sales_amount + shipping_amount + tax_amount) AS total_sales FROM orders WHERE order_date BETWEEN :start AND :end;