Problems / Funnel Step Conversion / Editorial
events
COUNT(DISTINCT CASE WHEN event_type = <stage> THEN user_id END)
cart/view
purchase/cart
* 100.0
crossJoin
Funnels leak *between* consecutive stages, so the informative ratio is step-over-step, not share-of-top. Here 40% of viewers reach the cart but 75% of carters purchase — the cart step is the bottleneck. Both percentages computed against view_users would hide that; the arithmetic difference is one denominator, but the analytical difference is which step you decide to fix.
view_users
Solve Funnel Step Conversion yourself →