Explore standardized definitions, formulas and usage guidance for key ecommerce performance metrics.
Gross Sales represents the total revenue generated from all completed orders before any deductions such as returns, discounts, or allowances. It serves as a key measure of overall sales volume and business scale, providing a clear view of top-line performance.
What were the gross sales for last week?
SELECT SUM(net_sales_amount + discount_amount) AS gross_sales FROM orders WHERE order_date BETWEEN :start AND :end;