FormulaCraft

How to calculate churn rate in Excel and Google Sheets

Topic:SaaS metrics
Excel & Google Sheets
=IFERROR((A2-B2)/A2*100,0)

Verified example

Computed by a real spreadsheet engine on the sample data below.

StartCustomersEndCustomersChurnPct
12001140=IFERROR((A2-B2)/A2*100,0)
11401095=IFERROR((A3-B3)/A3*100,0)
10951080=IFERROR((A4-B4)/A4*100,0)

=IFERROR((A2-B2)/A2*100,0)5

Try it with your data

Edit the grid or formula, then run it through a real spreadsheet engine — no signup.

Sample data — click any cell to edit

Runs server-side · free · no signup

Step by step

  1. 1Set up a table: column A = customers at start of period, column B = customers at end of period, one row per month.
  2. 2In C2, enter the churn rate formula: =(A2-B2)/A2*100. This gives the percentage of customers lost.
  3. 3Wrap with IFERROR to handle months with no starting customers: =IFERROR((A2-B2)/A2*100,0).
  4. 4Copy C2 down for each month. Format column C as Number with 2 decimal places.
  5. 5For annual churn from monthly rates, compound: =1-PRODUCT(1-C2:C13/100) gives the annual churn rate given 12 monthly rates in C2:C13.

Tips

Working on a sheet you inherited? Run the Auditor on the whole file first — it flags every #REF!, #N/A, broken column pattern, and inconsistent formula in seconds, free, no signup.

Frequently asked

What is a good churn rate?

It depends heavily on the industry. SaaS B2B targets are typically 1–3% monthly; consumer apps tolerate higher rates. Always benchmark against your specific segment.

How do I calculate revenue churn instead of customer churn?

Replace the customer counts with MRR (Monthly Recurring Revenue): (MRR at start − MRR at end) / MRR at start × 100. The formula structure is identical.

Is there a difference between churn rate and retention rate?

Retention rate = 1 − churn rate (or 100% − churn%). They are complementary; some teams find it easier to set retention targets (e.g. 97% monthly retention = 3% monthly churn).

More on SaaS metrics

See all →

Formulas used

Related tasks

Written and reviewed by FormulaCraft Team. Each formula on this page is run through our verification engine before publishing.

Last reviewed: