Stop Typing =A1*B1 — The Only Excel Trick You Need for Multiplication
By Sarah Mitchell
The first thing most people do when they need to multiply two columns is type =A1*B1 in C1, drag the fill handle down, and call it done. That’s not wrong — but it’s dangerously fragile. One accidental click outside the selection? Your formula stops updating. One inserted row? Your ranges break. And if you’re multiplying 7 columns across 2,300 rows? You’ll lose 12 minutes just dragging and checking for #REF! errors.
The Myth
You need to write a multiplication formula in every cell. People believe Excel multiplication means typing =A1*B1, pressing Enter, then dragging down — or worse, copying and pasting the formula into each row. They think this is the only reliable method. It isn’t. In fact, it’s the slowest, most error-prone way — especially when your data shifts, grows, or gets filtered.
The Reality
Excel multiplies faster and more reliably without dragging — using structured references, array formulas (in modern Excel), and Paste Special. Here’s what actually works — and why it saves time:
Symptom
Cause
Fix
C1 shows #VALUE! after dragging =A1*B1
Column A contains text (e.g., "Q2-2024") or blank cells
Use =IFERROR(A1*B1,"") or convert source data to numbers first
Formula breaks after inserting a row above row 5
Hard-coded cell references (A1, B1) don’t auto-adjust in all contexts
Convert to Excel Tables (Ctrl+T) → use structured references like [@[Price]]*[@[Qty]]
Dragging fills only 200 rows — but you have 1,842
Manual drag stops at visible screen range
Select C1:C1842 → type =A1:A1842*B1:B1842 → press Ctrl+Enter
Multiplying entire columns (A:A*B:B) returns #VALUE! in row 1
Headers in row 1 are text; Excel can’t multiply text × number
Use =A2:A10000*B2:B10000 instead — or better, convert to Table
Why the Myth Persists
YouTube tutorials from 2012 still rank #1 for “how do you multiply in excel spreadsheet”. They show the drag-down method because it’s visual and easy to film. Microsoft’s own legacy documentation used it in Excel 2003 help files. And trainers keep teaching it because students *see* the formula appear in each cell — even though that visibility comes at the cost of scalability and maintenance.
Old habits stick. But Excel has changed. Dynamic arrays (Excel 365/2021) let one formula spill results across hundreds of rows. Tables auto-expand. Paste Special multiplies without any formula at all.
The Right Way
Do this — in order — every time you need to multiply in an Excel spreadsheet.
First: Turn your data into a Table. Select A1:D10 (or however many rows you have), then press Ctrl+T. Check “My table has headers” → OK.
Now enter this in the first empty column (say, E1): =[@[Unit Price]]*[@[Quantity]]. Press Enter. That single formula automatically applies to every row — and adds itself to new rows you insert.
Still need to multiply non-adjacent ranges? Use this keyboard shortcut combo: Alt+H+V+M (Home → Paste → Paste Special → Multiply). Here’s how:
Type your multiplier (e.g., 1.08 for 8% tax) in an empty cell like G1
Copy G1 (Ctrl+C)
Select the range you want to multiply — say, B2:B25 (unit prices)
Press Alt+H+V+M, then Enter
That multiplies all selected cells by 1.08 — instantly, no formulas, no dragging.
Here’s realistic sample data showing both methods side-by-side:
Product
Unit Price
Qty
Total (Formula)
Total (Paste Special)
Wireless Headphones
$89.99
14
=B2*C2 → $1,259.86
$1,259.86
Bluetooth Speaker
$42.50
32
=B3*C3 → $1,360.00
$1,360.00
Smart Watch Band
$19.95
87
=B4*C4 → $1,735.65
$1,735.65
USB-C Cable Pack
$12.75
156
=B5*C5 → $1,989.00
$1,989.00
Noise-Cancelling Earbuds
$149.99
9
=B6*C6 → $1,349.91
$1,349.91
Laptop Sleeve
$34.99
63
=B7*C7 → $2,204.37
$2,204.37
Proof It Works
Here’s what happens when you add a new product — say, “Wireless Charging Pad” — to the bottom of the Table:
C4 now references =B3*C3 (wrong row); manual fix required
All formulas auto-update — no intervention needed
Filter to show only Qty > 50
C column shows values for hidden rows — misleading totals
Structured reference respects filter — only visible rows calculate
Exceptions
There are exactly two cases where typing =A1*B1 and dragging is acceptable — and only then.
First: You’re doing a one-off calculation on three or fewer rows, and you’ll never edit or expand the dataset. Example: calculating sales tax on three line items for an internal memo.
Second: You’re training someone who’s never seen Excel before — and you need them to *see* the relationship between cells before introducing abstraction. Even then, switch to Tables by lesson two.
But here’s the counterintuitive tip: If you must drag, don’t drag the fill handle. Instead:
Type =A1*B1 in C1
Select C1
Press Ctrl+Shift+↓ to select all contiguous cells down to the last non-blank row in column C
Press Ctrl+D (Fill Down)
That’s faster than dragging — and avoids mouse slip.
Quick-reference shortcut list
Ctrl+T → Convert selection to Table
Alt+H+V+M → Paste Special Multiply
Ctrl+Shift+↓ → Extend selection to last non-blank cell
Ctrl+Enter → Fill same formula across selected cells
Ctrl+[ → Jump to precedent cells (see which cells feed into your multiplication)
Now go open your spreadsheet. Pick one column pair you multiply regularly. Turn it into a Table. Type the structured formula once. Watch it work — without dragging, without fixing, without doubt.
Sarah Mitchell
Sarah has 12 years of experience covering Microsoft 365 productivity tools and enterprise software workflows. She specializes in Excel automation and SharePoint integration.