How to Divide One Column by Another in Excel

There are two ways to “divide one column by another in excel”: the quick way you copy and the durable way you understand. This page gives you both. The exact Excel answer is above; below, we build the small mental model that makes the fix stick, so the next variation of the same problem solves itself.

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

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. Most people learn this as a sequence of clicks and forget it by next week; learning it as a pattern instead is what lets you apply it to the next, slightly different version of the problem without starting from scratch. That is the difference this page is trying to make. The difference between a quick fix and a sheet you can trust is the extra minute you spend validating “divide one column by another in excel”. Start on a copy or a tiny sample, keep the affected columns 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 layout choice that keeps the sheet readable and sortable, 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. If there is any chance you will reuse this, drop it into a small template tab right now: a labelled input area on the left and the formula beside it, checked once against the tool above. Next time the same question comes up, the answer is a single paste away instead of a rebuild from memory.

In Google Sheets

Everything above works in Google Sheets too. Excel and Sheets share the formula syntax used here; only the surrounding menus are arranged differently. That portability is deliberate — learn it once and it follows you between the two tools and across Windows and Mac. Keep this page bookmarked for the next time the same question comes up. Better still, rebuild the example once in your own sheet — doing it yourself, with the tool above to check against, is what turns a copied formula into a technique you own. Here is the takeaway for “divide one column by another in excel”: copy the answer if you are busy, but if you have a spare few minutes, rebuild the example in Excel yourself with the tool above open beside it. That single pass — type it, run it, watch the result move when you change an input — is what turns a formula you found into a technique you trust. Keep your inputs labelled and referenced, never hard-coded, and the same sheet stays correct and auditable as it grows. Done that way, you will not need to look this up again, and you will be the person others ask.

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.

Other ways people ask this

People reach this page typing “print one long column side by side excel”, “divide by formula in excel”, “how to multiply one column by another in excel” and “how to divide one column by another column in excel”, among other phrasings; whichever wording you used, the fix above is the one you want.

Why do people search for this in so many different ways?

Because the same task has many names. “print one long column side by side excel”, “divide by formula in excel”, “how to multiply one column by another in excel” all point at the one operation explained on this page, which is why they all lead here.