Explore standardized definitions, formulas and usage guidance for key ecommerce performance metrics.
Measures the percentage of orders canceled after being placed. Indicates order fulfillment reliability, customer satisfaction, and operational efficiency.
What’s our cancellation rate for this week?
SELECT COALESCE(COUNT(DISTINCT order_id) * 100.0 / NULLIF(COUNT(DISTINCT order_id), 0), 0) AS cancellation_rate FROM orders WHERE order_date BETWEEN :start AND :end;