What Is Churn Rate?
Churn rate is the percentage of customers (or revenue) that cancels in a given period — the single most important health metric for a subscription SaaS business.
Churn rate is the percentage of customers (or recurring revenue) that cancels during a given period. For a subscription SaaS business it is the single clearest signal of product-market health: it measures how fast the bucket leaks while you pour new customers in.
A 5% monthly churn rate sounds small, but compounded it means you lose roughly half your customer base over a year. Every acquisition strategy is undermined if you cannot keep the customers you win.
How to calculate churn rate
The basic monthly formula is straightforward:
Monthly Churn Rate = (Customers Lost During Month / Customers at Start of Month) × 100
Example: 100 customers at the start, 5 cancel → 5% monthly churn
Two details trip people up. First, customers acquired mid-period are usually excluded from the denominator so a burst of new signups does not artificially deflate the number. Second, monthly and annual churn are not interchangeable — 5% monthly is far worse than 5% annual, because monthly losses compound twelve times.
Customer churn vs. revenue churn
| Metric | What it measures | Why it matters |
|---|---|---|
| Customer churn | Share of customers who cancel | Counts logos lost, treats every account equally |
| Revenue churn (MRR churn) | Share of MRR lost to cancellations and downgrades | Weights by dollars — losing one big account hurts more than one small one |
| Net revenue churn | Revenue churn minus expansion revenue from upgrades | The truest growth signal |
When expansion revenue (upgrades, seat additions, upsells) outweighs cancellations, net revenue churn goes negative — your existing base generates more revenue over time even though some customers leave. That is the strongest position a subscription business can be in, and it is the metric investors look for first.
Voluntary vs. involuntary churn
Not all churn is a decision. Voluntary churn is a customer choosing to leave — they found a better tool, never got value, or no longer need the product. Involuntary churn is a failed payment: an expired card, an insufficient balance, a bank decline. Involuntary churn is the cheapest to fix because the customer never meant to go.
Rough benchmarks
Benchmarks vary widely by market, so treat these as orientation rather than targets:
- B2B SaaS: ~1–2% monthly
- Enterprise: under ~1% monthly (long contracts, high switching cost)
- B2C / self-serve SaaS: ~3–7% monthly is common, since individual users churn more freely
Common causes of churn
- Weak activation — users never reach the moment the product clicks for them, so they never form a habit.
- Unmet expectations — a promised feature is missing or the product underdelivers.
- A better or cheaper alternative appears.
- The customer's own business changes — they shut down, restructure, or no longer need the category.
- Failed payments — pure involuntary churn, often the single largest avoidable bucket.
A concrete example
A booking SaaS with 200 paying properties loses 8 in a month. Customer churn is 8 / 200 = 4%. But of those 8, three were card declines that retry logic would have recovered. The real avoidable voluntary churn was closer to 2.5% — which reframes the problem from "the product is leaking" to "the billing flow is leaking." Splitting the number this way is what makes churn actionable instead of just alarming.
In practice, the SaaS products I build — like BookBed (a booking platform on Flutter, Firebase, and Stripe) — wire up automatic payment retries and dunning emails from day one, precisely because involuntary churn is the easiest win available.
Reducing churn
Start with involuntary churn — it is the lowest-effort lever. Stripe's automatic retry logic and dunning emails recover a meaningful share of failed renewals with no product changes. After that, the work shifts to retention: faster activation, closing the gap between what was promised and what's delivered, and earning expansion revenue from the customers who stay. If you want help instrumenting churn metrics or building retention and recovery flows into a subscription product, contact for a quote.
Key takeaways
- Churn rate is the percentage of customers or revenue lost in a period — the core health metric for any subscription business.
- Always specify the window: monthly churn compounds and is far harsher than the same annual figure.
- Track revenue churn and net revenue churn, not just customer count; negative net revenue churn means you grow even while losing some customers.
- Separate voluntary from involuntary churn — failed payments are the cheapest churn to recover, often with retry logic alone.