Explore standardized definitions, formulas and usage guidance for key ecommerce performance metrics.
Total Cancellations represent the total number of orders that were canceled before fulfillment. This metric helps identify order management issues, customer experience gaps, and inventory mismatches.
How many cancellations occurred last week?
SELECT COUNT(DISTINCT CASE WHEN is_cancelled_flag = 1 THEN order_id END) AS total_cancellations FROM orders WHERE order_date BETWEEN :start AND :end;