Explore standardized definitions, formulas and usage guidance for key ecommerce performance metrics.
Measures the revenue generated per dollar spent on advertising. It provides a focused view of campaign-level profitability and efficiency.
What’s our ROAS for Facebook campaigns this week?
SELECT SUM(COALESCE(conversions_value, 0.0)) / NULLIF(SUM(COALESCE(spend, 0.0)), 0) AS roas FROM spends WHERE spends_date BETWEEN :start AND :end;