Excel Practice Test

โ–ถ

You opened a spreadsheet, typed two numbers, and now you need one divided by the other. Sounds simple โ€” but the moment you type the divide symbol you remember from school, nothing happens. That's because Excel doesn't use it. It uses the forward slash (/), and the trick is knowing exactly where the equals sign goes.

This guide walks you through every practical way to do division in Excel. You'll learn the basic formula, how to divide whole columns at once, why #DIV/0! keeps popping up, and how to handle it without breaking your spreadsheet. By the end, you'll handle division as easily as you'd punch numbers into a calculator โ€” except faster, because Excel does the heavy lifting.

How to Do Division in Excel: The Basic Formula

Every division formula in Excel starts with an equals sign. That's the bit most beginners miss. Without the =, Excel treats your entry as text and shows whatever you typed instead of calculating anything.

The basic syntax is dead simple:

=number1/number2

So if you want to divide 100 by 4, click any empty cell and type =100/4. Press Enter. You'll see 25. That's it.

But hardcoding numbers into formulas defeats the point of a spreadsheet. The real power kicks in when you reference cells. Say cell A1 holds 100 and B1 holds 4. In C1, type =A1/B1 and you get 25 again โ€” but now if you change A1 to 200, C1 updates to 50 automatically. That's the whole magic of an excel spreadsheet.

Quick walkthrough you can try right now

Open a blank sheet. In A1, type 250. In B1, type 5. Click C1. Type =A1/B1 and hit Enter. You'll see 50. Now change B1 to 10. Watch C1 flip to 25 instantly. No recalculating, no Calculator app, no scrap paper.

Take a Free Excel Practice Test

Dividing a Column by a Single Number

Here's where most people get tripped up. You've got 200 prices in column A, and you want to divide every single one by 12 โ€” say, to convert annual to monthly. You don't want to write 200 separate formulas. And you shouldn't have to.

Two clean ways to handle this:

Method 1: Drag the formula down

Type =A1/12 in cell B1. Press Enter. Click B1 again to select it. Look at the bottom-right corner โ€” there's a tiny green square called the fill handle. Double-click it. Excel fills the formula all the way down to match your data in column A. Job done in two seconds.

Method 2: Use an absolute reference

What if the divisor is in a cell, not typed into the formula? Put 12 in cell D1. Then in B1, type =A1/$D$1. The dollar signs lock D1 in place when you copy the formula down โ€” that's an absolute reference. Without the dollar signs, Excel would shift D1 to D2, D3, D4 as you drag, and your math would break instantly.

This second method is the one to use when your divisor might change. Update D1 once, every result recalculates. It's a tiny habit that saves hours.

Dividing Two Columns Together

Now let's say column A is revenue and column B is units sold. You want column C to show revenue per unit. In C1, type =A1/B1. Drag down. Each row divides its own A by its own B. Done.

That's relative referencing in action โ€” no dollar signs needed because you want both references to shift as you fill down. Excel does the heavy lifting; you just need to know when to lock cells and when to let them move.

The QUOTIENT Function (When You Only Want the Whole Number)

Sometimes you don't care about the decimals. You're dividing 17 cookies among 5 kids and you want to know how many whole cookies each kid gets โ€” not 3.4 cookies. That's where QUOTIENT comes in.

Syntax: =QUOTIENT(numerator, denominator)

Type =QUOTIENT(17,5) and you get 3. Clean integer, no decimals. Pair it with MOD if you also want the remainder: =MOD(17,5) returns 2 (the leftover cookies).

QUOTIENT is handy for inventory splits, batch calculations, or anywhere a fractional result doesn't make physical sense.

What symbol do you use for division in Excel?

Excel uses the forward slash (/) for division, not the traditional divide sign from grade school. To divide 20 by 4 in a cell, you'd type =20/4. The equals sign at the start tells Excel it's a formula, and the slash does the actual dividing.

Why does Excel show #DIV/0! and how do I fix it?

That error pops up whenever your formula tries to divide by zero or by an empty cell. Wrap the formula in IFERROR to handle it cleanly: =IFERROR(A1/B1, 0) returns 0 instead of the ugly error. You can swap the 0 for any value you prefer, including a dash or text like 'N/A'.

How do you divide an entire column by one number?

Type the division formula in the first cell using an absolute reference for the divisor โ€” something like =A1/$D$1 where D1 holds your divisor. Then double-click the fill handle (the small square at the cell's bottom-right corner) to copy the formula down to match your data.

What's the difference between / and QUOTIENT in Excel?

The forward slash gives you the full decimal answer, so 10/3 returns 3.333. The QUOTIENT function chops off the decimals and gives you just the whole number โ€” =QUOTIENT(10,3) returns 3. Use QUOTIENT when fractional answers don't make sense, like splitting items between people.

Can you divide cells across different sheets?

Yes โ€” reference the sheet name with an exclamation mark. If you want to divide a cell on Sheet1 by one on Sheet2, type =Sheet1!A1/Sheet2!A1. Excel handles cross-sheet math the same way it handles same-sheet math; you're just being explicit about where each value lives.

How do I round the result of a division?

Wrap your division inside the ROUND function: =ROUND(A1/B1, 2) rounds the answer to two decimal places. Change the 2 to 0 for whole numbers, or to 4 if you need more precision. ROUNDUP and ROUNDDOWN give you control over which direction to round.

Handling the #DIV/0! Error

You'll see #DIV/0! the moment Excel tries to divide by zero or by an empty cell. It's not a bug โ€” it's math. You can't divide by nothing. But seeing red errors splattered across a report looks terrible, so here's how to fix it.

The cleanest fix is IFERROR. Wrap your formula like this:

=IFERROR(A1/B1, 0)

If B1 is empty or zero, you'll get 0 instead of the error. Want a dash instead? Use =IFERROR(A1/B1, "-"). Want it blank? Use =IFERROR(A1/B1, "").

The older method uses IF: =IF(B1=0, 0, A1/B1). It works fine but takes longer to type, and it doesn't catch every error type โ€” just the divide-by-zero case. IFERROR is more forgiving because it catches anything that breaks, not just division failures.

When zero might actually be your answer

Be careful with IFERROR. If you replace errors with 0, anyone reading your report might assume the math succeeded and the result genuinely was zero. For dashboards, it's often clearer to show a dash or "N/A" so the missing data is obvious. Use what makes sense for your audience.

Division and Percentages

Percentages are just division dressed up. To find what percent 75 is of 200, type =75/200 โ€” you'll get 0.375. Click the % button on the Home tab (or press Ctrl+Shift+5) and Excel flips that to 37.5%. The underlying number didn't change; Excel just displays it differently.

This trick is how you build profit margin formulas, completion rate trackers, growth comparisons, and most of the dashboards you'll ever need. Mastering division is mastering percentages โ€” they're the same operation wearing different clothes.

Try a quick percentage calculation

If A1 has total sales (5000) and B1 has commission earned (750), type =B1/A1 in C1 and format it as a percentage. You get 15%. Drag that down across rows of sales reps and you've built a commission rate report in under a minute. That's the kind of thing Microsoft Excel handles in seconds that would take ages by hand.

Paste Special: Divide an Entire Range by One Number

Here's a slick trick most people never learn. Suppose you have a column of 500 prices and you need to divide every one by 1.10 to strip out VAT. Instead of writing a new formula column, you can do it in place.

  1. Type 1.10 into any empty cell.
  2. Copy that cell (Ctrl+C).
  3. Select your 500-cell range.
  4. Right-click and pick Paste Special.
  5. Under Operation, choose Divide. Click OK.

Every cell in your range gets divided by 1.10 โ€” the values change in place, no new column needed. It's destructive though, so make a backup copy first. This technique is gold for one-off cleanups where you don't want a permanent formula hanging around.

Common Mistakes to Watch For

A few things trip people up over and over:

Practice Division in Real Spreadsheets

Reading about formulas only gets you halfway. The other half is muscle memory โ€” typing the formulas, dragging the fill handle, fixing the errors. Open a blank workbook and try every example in this guide. Build a small budget tracker that divides annual costs into monthly amounts. Create a sales report that divides revenue by units sold.

Once you've done division a dozen times, you'll start spotting opportunities everywhere โ€” splitting team workloads, calculating averages, converting units, building ratios. It's one of the most quietly useful operations in Excel, hiding behind a single forward slash.

When you're ready to test your skills against more advanced material, take a practice test covering formulas, references, and real-world scenarios. The questions reveal gaps you didn't know you had โ€” and filling those gaps is what turns casual users into the people who get hired for their spreadsheet skills.

โ–ถ Start Quiz