Business Metrics

How to Improve Conversion Rate with Data Analysis

Conversion improvement starts with finding the right bottleneck. Use funnel steps, segments, and experiment design to move from guesswork to action.

Define the conversion event

Before optimizing, define exactly what counts as conversion. Is it signup, activation, payment, deposit, repeat order, or completed onboarding?

Map the funnel

List each step from entry to conversion. Calculate step-to-step conversion rate and total conversion rate. The largest loss point is usually where the first investigation should start.

landing_page_view
  -> signup_start
  -> signup_complete
  -> product_view
  -> checkout_start
  -> payment_success

For each step, calculate users entering the step, users completing the next step, step conversion rate, and drop-off rate. A funnel table is often more useful than one overall conversion number.

Segment the funnel

Break conversion by channel, device, user type, country, campaign, and product surface. A global average can hide a specific segment that is causing most of the problem.

SQL example

This simplified query creates a funnel summary for three events. Expand it with your own event names and attribution fields.

WITH user_steps AS (
  SELECT
    user_id,
    MAX(CASE WHEN event_name = 'landing_page_view' THEN 1 ELSE 0 END) AS viewed,
    MAX(CASE WHEN event_name = 'signup_complete' THEN 1 ELSE 0 END) AS signed_up,
    MAX(CASE WHEN event_name = 'payment_success' THEN 1 ELSE 0 END) AS paid
  FROM events
  WHERE event_date BETWEEN DATE '2026-06-01' AND DATE '2026-06-30'
  GROUP BY 1
)
SELECT
  COUNT(*) AS users,
  SUM(viewed) AS viewed,
  SUM(signed_up) AS signed_up,
  SUM(paid) AS paid,
  1.0 * SUM(signed_up) / NULLIF(SUM(viewed), 0) AS signup_rate,
  1.0 * SUM(paid) / NULLIF(SUM(signed_up), 0) AS payment_rate
FROM user_steps;

Connect data with user friction

Metrics tell you where the issue is. Product review, session recordings, support tickets, and user research help explain why the issue exists.

Turn findings into tests

Prioritize ideas by impact, confidence, and effort. The best conversion work creates a pipeline of testable hypotheses rather than one-off design changes.

Common causes of conversion drops

  • Traffic quality changed after a campaign or channel mix shift.
  • A page or app release introduced friction.
  • Payment, inventory, or pricing changed.
  • Tracking changed and the metric is no longer comparable.
  • Seasonality changed user intent.

Recommended workflow

  1. Confirm the conversion definition.
  2. Build a funnel table by step.
  3. Segment the biggest drop-off step.
  4. Check data quality and event tracking.
  5. Translate the finding into a testable product or marketing action.