How to Do a Division Formula in Excel

If you just need to do a division formula in excel and move on, the boxed answer at the top is all you need. The rest of this page is for when you want to understand why it works in Excel, adapt it to a trickier version, or make it robust enough to hand to a colleague. We keep the opening short on purpose — the depth is here when you want it, not in your way when you don’t.

Exact answer

In Excel: there is no DIVIDE function in Excel — use the forward slash, for example =A2/B2 (Google Sheets also offers DIVIDE(A2,B2)).

Annotated stepsExcel
1

Click the cell where the result should appear.

2

Type =, the dividend, a forward slash and the divisor, e.g. =A2/B2, then press Enter.

3

To divide a whole column by one constant, lock it with $ (=A2/$C$1) and copy the formula down.

4

To change values in place instead, copy the constant, select the range and choose Paste Special ▸ Divide.

5

Guard against zero or empty divisors with =IF(B2=0,"",A2/B2) or =IFERROR(A2/B2,"").

=A2/B2
Ctrl+CthenCtrl+Shift+V+Cthen+Ctrl+VPaste values · WindowsMac

Need it as an auditable file?

Ships inside the linked template — formula-driven, unlocked, audit-ready.

View template

What this does

Excel has no DIVIDE function because the forward slash is the division operator: any formula starting with = can divide one cell or number by another. Google Sheets accepts the same operator and additionally ships DIVIDE(dividend, divisor). For whole-number division there are QUOTIENT (the integer part) and MOD (the remainder). If the divisor is zero or blank, the formula returns #DIV/0! unless you guard it. Keep the inputs visible and clearly labelled and the whole thing stays auditable — anyone who opens the file later, including you, can see at a glance exactly what feeds the result and change one assumption without hunting through the formula. The difference between a quick fix and a sheet you can trust is the extra minute you spend validating “do a division formula in excel”. Start on a copy or a tiny sample, keep the affected formula visible, and compare the result with the tool above before you touch the real workbook. When a formula is involved, keep the inputs labelled beside it, reference cells instead of typing values, and apply number formatting only after the result checks out. The point is a calculation you can defend to a CFO or an auditor, but the practical win is that someone else can open the file and understand what happened without asking you.

A worked example

Revenue of 4500 in A2 divided by 30 units in B2: =A2/B2 returns 150 per unit. To divide a whole price column by one exchange rate in C1, use =A2/$C$1 and copy down — the dollar signs keep the reference fixed. To show each row as a share of the total in A10, use =A2/$A$10 and format as a percentage. For integer division, =QUOTIENT(47,5) returns 9 and =MOD(47,5) returns the remainder 2. Division powers per-unit prices, rates, ratios and shares of total. Knowing it is just the / operator — plus a guard for zero divisors — covers nearly every case. A practical tip before you scale it up: build it once on a small block of test data, confirm the number against the tool on this page, and only then point it at your real sheet. That one habit catches almost every mistake while it is still cheap to fix, long before a wrong figure reaches a report or a colleague.

In Google Sheets

If you are in Google Sheets rather than Excel, the good news is that the formula shown here is identical and the workflow barely changes — menus sit across the top instead of in a ribbon, and a few function names differ slightly, but anything you build here moves across with little or no rework. Nothing on this page is behind a login: the tool runs entirely in your browser, the formula is shown in full with one-click copy, and the steps work the same on Windows and Mac. That is the whole promise here — the exact answer, a way to prove it on your own numbers, and just enough context to make it stick. The short version of “do a division formula in excel”: the answer is at the top of this page, the tool proves it on your own numbers, and the sections above explain why it holds so the next variation does not stump you. Excel rewards people who reference cells instead of typing values and who keep inputs separate from formulas, because that is what makes a result you can audit months later. Build it once, deliberately, with the live tool as a check, and you convert a one-off lookup into a reusable skill — which is the whole point of learning the why and not just the what.

Common mistakes

  • Looking for a DIVIDE function in Excel — there is none; the / operator is the answer (only Google Sheets has DIVIDE).
  • Dividing by a cell that is zero or blank, which returns #DIV/0!.
  • Forgetting the $ signs when dividing a column by one constant, so the reference shifts as you copy down.
  • Swapping dividend and divisor — A2/B2 and B2/A2 give very different numbers.
  • Wrapping everything in IFERROR to hide #DIV/0! instead of fixing the zeros in the source data.

Frequently asked questions

Is there a DIVIDE function?

Not in Excel — the / operator does the job. Google Sheets has DIVIDE(A2,B2), but the operator works there too.

How do I fix #DIV/0!?

The divisor is zero or blank. Test it first with =IF(B2=0,"",A2/B2), or wrap the formula in IFERROR to show a fallback.

How do I show each value as a percentage of the total?

Divide by the fixed total, e.g. =A2/$A$10, then format the cell as a percentage.