The dollar sign that fixes everything ($)
Why your formula breaks when you drag it, and the single character that stops it.
This lesson solves the single most common beginner frustration in Excel. If you've ever dragged a formula down and got a column of zeros or #DIV/0! errors, this is why.
The setup
| A | B | C | |
|---|---|---|---|
| 1 | Tax rate | 0.18 | |
| 2 | Item | Price | Tax |
| 3 | Notebook | 60 | |
| 4 | Pen | 15 | |
| 5 | Bag | 850 |
In C3 you write =B3*B1. You get 10.8. Correct.
You drag down to C4. You get 0.
Why it broke
Remember from lesson 1: when you drag a formula down, Excel shifts the references down too. That's usually helpful. Here it's a disaster:
- C3:
=B3*B1β - C4:
=B4*B2β B2 is the word "Item", not the tax rate β - C5:
=B5*B3β B3 is 60 β
Excel moved both references. You wanted only the first one to move.
The fix
Change B1 to $B$1:
=B3*$B$1Now drag down:
- C3:
=B3*$B$1β - C4:
=B4*$B$1β - C5:
=B5*$B$1β
Perfect.
What each dollar sign locks
The dollar sign locks whatever comes immediately after it.
| Written as | What's locked | When to use it |
|---|---|---|
B1 | Nothing β both move | Most of the time |
$B$1 | Column and row β fully frozen | A single constant like a tax rate |
B$1 | Row only | Dragging across a row |
$B1 | Column only | Dragging across columns |
The multiplication table trick
The classic exercise that proves you understand this. Numbers 1β10 across row 1 and down column A, and one single formula in B2:
=B$1*$A2Drag it right and down across the whole grid, and you get a complete multiplication table.
Look at why it works: B$1 has the row locked, so it always reads from row 1 as you drag down. $A2 has the column locked, so it always reads from column A as you drag right.
One formula. A hundred cells. That's the whole idea of a spreadsheet in one line.
Names: the tidy alternative
Once you're comfortable, there's a nicer way. Click cell B1, type TaxRate into the Name Box (the little box to the left of the formula bar), and press Enter.
Now you can write:
=B3*TaxRateIt reads like English, it never breaks when dragged, and anyone opening your file six months later immediately understands it. Named cells are one of the clearest signs of a professional spreadsheet.
Too Long; Didnβt Read
- Dragging a formula shifts its references β helpful for row data, disastrous for a fixed constant.
- A dollar sign locks whatever follows it: $B$1 never moves, B$1 locks the row, $B1 locks the column.
- Press F4 to cycle the dollar signs instead of typing them, or name the cell to make formulas read like English.
Your tiny task
Build the 10x10 multiplication table using only the single formula =B$1*$A2 dragged across the whole grid. If any cell is wrong, you have a dollar sign in the wrong place β fix it and the whole grid corrects at once.
It takes a few minutes and itβs the bit that makes the lesson stick.
Quick check
0 of 3 answered
Three questions. Get one wrong and youβll get a hint β thereβs no penalty and you can try again straight away.
Your score is saved to your dashboard.
Finished reading? Tick it off.
Create a free account to save your progress, streak and badges.
Up next: Clean data habits (why your sheet breaks)
Advertisement
Ad space (lessonFooter)
Add your AdSense IDs to .env and real ads appear here.
Ads keep the free courses free. Go Pro to remove them.