FormulaCraft

How to calculate a conversion rate in Excel and Google Sheets

Excel & Google Sheets
=IFERROR(B2/A2*100,0)

Verified example

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

VisitorsConversionsRatePct
3200128=IFERROR(B2/A2*100,0)
4500202=IFERROR(B3/A3*100,0)
280084=IFERROR(B4/A4*100,0)

=IFERROR(B2/A2*100,0)4

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 with one row per campaign or period: column A = total visitors (or leads), column B = conversions.
  2. 2In C2, enter the conversion rate: =IFERROR(B2/A2*100,0). Multiply by 100 to express as a percentage. IFERROR returns 0 when A2 is zero or blank.
  3. 3Copy C2 down for all rows. Format column C as Number with 2 decimal places and add a % unit label in a header or adjacent cell.
  4. 4To compute an overall blended rate across all rows, use: =IFERROR(SUM(B2:B10)/SUM(A2:A10)*100,0). Do not average the per-row percentages — always divide totals.
  5. 5For segment comparison, use SUMIF to aggregate conversions and visitors by segment before applying the rate formula.

Tips

Need it for your exact data?

Describe your columns in plain English and get the precise formula for your sheet, with the right Excel or Sheets syntax.

Frequently asked

Should I express conversion rate as a decimal (0.03) or percentage (3%)?

Industry convention uses percentage (3%). If your downstream calculations multiply by conversion rate, store as a decimal (omit ×100) to avoid extra /100 steps.

How do I calculate a multi-step funnel conversion?

Calculate each step's rate independently (step2/step1, step3/step2, etc.), then multiply for the overall funnel rate: =C2*D2*E2 if each step rate is stored as a decimal.

My conversion data lives in separate sheets — how do I aggregate?

Use 3D references (=SUM(Sheet1:Sheet3!B2)) in Excel, or IMPORTRANGE combined with SUMIF in Google Sheets, to pull and sum across sheets before dividing.

Formulas used

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

Last reviewed: