How to Multiply Cells in Excel

If you just need to multiply cells 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: multiply two cells with =A2*B2, multiply a range with =PRODUCT(A2:A10), and copy the formula down when each row needs its own result.

Annotated stepsExcel
1

Click the result cell.

2

Type =, select the first value, type *, then select the second value.

3

Press Enter and format the result if it represents currency or units.

4

Drag or double-click the fill handle to copy the multiplication formula down a table.

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

What this does

Excel uses the asterisk (*) as the multiplication operator. For one row, multiply cell references directly; for many values in one formula, PRODUCT multiplies every number in a range. Because cell references adjust as you copy down, a single row formula can calculate quantity times price for an entire table. 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. For “multiply cells in excel”, the reliable version is a short checking loop, not just the first command that appears to work. Run it on a deliberately small range first, watch how the affected cells change, and only then apply the same setup to the full sheet. 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 is what makes a layout choice that keeps the sheet readable and sortable useful in real work: repeatable, auditable, and not dependent on memory or luck.

A worked example

Quantity is in A2 and unit price is in B2. Enter =A2*B2 in C2: 12 units at 4.50 returns 54.00. Fill the formula down and row 3 becomes =A3*B3 automatically. If A2:A5 holds 2, 3, 4 and 5, =PRODUCT(A2:A5) returns 120. Multiplication is the backbone of pricing sheets, inventory totals, unit conversions, weighted scores and any model where a count has to be scaled by a rate, price, percentage or factor. 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. 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. The short version of “multiply cells 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

  • Using x instead of *; Excel treats x as text or a name, not multiplication.
  • Forgetting parentheses when multiplying part of a larger expression, such as =(A2+B2)*C2.
  • Copying a formula with fixed references accidentally; use $ only when one multiplier should stay constant.
  • Multiplying numbers stored as text, which can return errors or unexpected zeros until the data is converted.

Frequently asked questions

What symbol multiplies in Excel?

Use the asterisk: =A2*B2.

How do I multiply a whole column by one number?

Put the multiplier in one cell, use an absolute reference like =A2*$E$1, then fill down.

When should I use PRODUCT?

Use PRODUCT when one formula needs to multiply many cells or a whole range, such as =PRODUCT(A2:A10).

Other ways people ask this

This is also commonly searched as “how do i multiply cells in excel”, “multiply cells in excel”, “excel formula multiply cells” and “excel formula to multiply cells”. 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. “how do i multiply cells in excel”, “multiply cells in excel”, “excel formula multiply cells” all point at the one operation explained on this page, which is why they all lead here.