In Excel: there is no DIVIDE function in Excel — use the forward slash, for example =A2/B2 (Google Sheets also offers DIVIDE(A2,B2)).
Click the cell where the result should appear.
Type =, the dividend, a forward slash and the divisor, e.g. =A2/B2, then press Enter.
To divide a whole column by one constant, lock it with $ (=A2/$C$1) and copy the formula down.
To change values in place instead, copy the constant, select the range and choose Paste Special ▸ Divide.
Guard against zero or empty divisors with =IF(B2=0,"",A2/B2) or =IFERROR(A2/B2,"").
Need it as an auditable file?
Ships inside the linked template — formula-driven, unlocked, audit-ready.
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. Treat “divide function excel” as a small repeatable workflow rather than a one-off click you hope to remember next time. Use a small test block before the live file, so any surprise in the affected formula shows up while it is still harmless. 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. That turns a calculation you can defend to a CFO or an auditor into a method you can reuse, explain, and defend when the workbook leaves your screen.
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. One habit worth forming early: name the cells that hold your inputs, so the formula reads in plain language instead of a string of cell addresses. A reviewer — or you in three months — can then follow the logic without decoding what B7 and D2 were supposed to mean, which is most of what makes a sheet maintainable.
In Google Sheets
Google Sheets handles this almost identically to Excel. The formula syntax above is the same, and the menu lives under a slightly different label rather than a ribbon tab. Use the platform toggle at the top of the page to switch every keyboard shortcut between Windows and Mac, and expect at most cosmetic differences in naming. 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. Treat “divide function excel” as a small building block rather than a chore. Once the inputs sit in their own cells and the formula reads from them, the same setup answers a dozen related questions with a tweak, and Excel keeps every dependent figure current as the data changes. The tool above is there so you can rehearse and verify before committing anything to a real workbook; the steps and worked example are there so the logic sticks. Get it right once and it stops costing you time — it starts saving it, every time the question comes back around.
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/B2andB2/A2give very different numbers. - Wrapping everything in
IFERRORto 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
This is also commonly searched as “function for divide in excel”, “how to divide function in excel” and “excel function divide”. They describe the identical operation, so you are in the right place no matter how you phrased it.
Why do people search for this in so many different ways?
Because the same task has many names. “function for divide in excel”, “how to divide function in excel”, “excel function divide” all point at the one operation explained on this page, which is why they all lead here.