Explore standardized definitions, formulas and usage guidance for key ecommerce performance metrics.
Average Order Value (AOV) measures the average amount spent per transaction. It helps assess customer purchasing behavior and pricing effectiveness.
What’s our average order value for this week?
SELECT COALESCE(SUM(net_sales_amount), 0) / NULLIF(COUNT(DISTINCT order_id), 0) AS aov FROM orders WHERE order_date BETWEEN :start AND :end;