How to Multiply and Divide in Excel

How to Multiply and Divide in Excel

Multiplication and division are two of the very first things I ever did in Excel, long before I knew what a pivot table or a VLOOKUP even was. They’re simple operations, but there are several different ways to do them depending on what you’re working with — a couple of numbers, a whole column, or values scattered across different sheets. In this article, I’ll cover every method I use to multiply and divide in Excel, along with the mistakes that trip up beginners.

The Basics: Excel Operators

Excel uses specific symbols for math operations:

Every formula in Excel starts with an equals sign =, so multiplying 5 by 3 looks like =5*3, and dividing 10 by 2 looks like =10/2.

Step-by-Step: Multiplying Two Numbers

  1. Click on an empty cell.
  2. Type = followed by your first number, *, and your second number. For example: =8*4.
  3. Press Enter.

The cell will now display 32.

Step-by-Step: Multiplying Cell References

More commonly, I multiply values that already exist in other cells rather than typing raw numbers:

  1. Click an empty cell where you want the result.
  2. Type =, then click the first cell (say A2), type *, then click the second cell (say B2).
  3. Your formula will look like =A2*B2.
  4. Press Enter.

Step-by-Step: Dividing Two Numbers or Cells

Division works exactly the same way, just with the / symbol:

Multiplying or Dividing an Entire Column

Let’s say I have quantities in column A and unit prices in column B, and I want the total price in column C for every row.

  1. Click cell C2.
  2. Type =A2*B2.
  3. Press Enter.
  4. Hover over the small square at the bottom-right corner of C2 (the fill handle) until the cursor turns into a thin black cross.
  5. Double-click it, or click and drag it down through the rest of your rows.

Excel automatically adjusts the row references for each row, so C3 becomes =A3*B3, C4 becomes =A4*B4, and so on.

Multiplying or Dividing by a Fixed Number (Absolute Reference)

Sometimes I need to multiply an entire column by one fixed number — like converting a column of prices in USD to PKR using a single exchange rate cell.

If my exchange rate is in cell E1, and my USD prices are in column A, I don’t want the E1 reference to shift as I copy the formula down. So I use a dollar sign to lock it:

=A2*$E$1

The $ signs make E1 an absolute reference — it stays fixed no matter where I copy the formula, while A2 still adjusts normally to A3, A4, and so on as I drag down.

Multiplying or Dividing Without Typing a Formula (Paste Special)

This is a trick I use often when I need to multiply or divide an entire range by a single number, without writing individual formulas:

  1. Type your number (say, 1.1 for a 10% increase) into any empty cell, and copy it (Ctrl+C).
  2. Select the range of cells you want to multiply.
  3. Right-click and choose Paste Special.
  4. Under “Operation,” choose Multiply (or Divide).
  5. Click OK.

Every selected cell is instantly multiplied by that number, permanently changing the values — this is different from a formula, since it overwrites the original numbers rather than calculating a new result.

Using the PRODUCT and QUOTIENT Functions

For multiplying several numbers or ranges at once, the PRODUCT function is often cleaner than chaining asterisks:

=PRODUCT(A2:A10)

This multiplies every value in that range together.

For division that returns only the whole number part (ignoring the remainder), I use:

=QUOTIENT(10, 3)

This returns 3, dropping the remainder — useful when I need whole units, like calculating how many full boxes of 12 items I can make from a total quantity.

Handling the #DIV/0! Error

One of the most common errors I run into is dividing by zero or by an empty cell, which produces #DIV/0!. I usually wrap my formula in IFERROR to handle it gracefully:

=IFERROR(A2/B2, 0)

This returns 0 (or any value I choose) instead of an ugly error if B2 is zero or blank.

Practical Example

Suppose I run a small shop and have a spreadsheet with:

My formulas would look like:

Dragging these down for every row instantly gives me revenue, profit, and margin for the entire product list.

Common Mistakes I See

Troubleshooting Tips

Real-World Use Cases

Best Practices I Follow

Multiplying and dividing in Excel is about as basic as it gets, but the small details — absolute references, error handling, and choosing between a formula versus Paste Special — are what separate a spreadsheet that just “works” from one that’s genuinely reliable as your data grows.

Exit mobile version