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.
Click the result cell.
Type =, select the first value, type *, then select the second value.
Press Enter and format the result if it represents currency or units.
Drag or double-click the fill handle to copy the multiplication formula down a table.
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 an entire column 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 columns 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. 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. Nothing on this page is behind a login: the tool runs entirely in your browser, the formula is shown in full with one-click copy, and the steps work the same on Windows and Mac. That is the whole promise here — the exact answer, a way to prove it on your own numbers, and just enough context to make it stick. Here is the takeaway for “multiply an entire column 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
- 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
People reach this page typing “how to multiply entire column in excel” and “how to multiply entire columns 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. “how to multiply entire column in excel”, “how to multiply entire columns in excel” all point at the one operation explained on this page, which is why they all lead here.