DeskFluent
Module 1Free7 min read

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

ABC
1Tax rate0.18
2ItemPriceTax
3Notebook60
4Pen15
5Bag850

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$1

Now 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 asWhat's lockedWhen to use it
B1Nothing β€” both moveMost of the time
$B$1Column and row β€” fully frozenA single constant like a tax rate
B$1Row onlyDragging across a row
$B1Column onlyDragging 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*$A2

Drag 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*TaxRate

It 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.

  1. What does the dollar sign do in $B$1?
  2. In B$1, what exactly is locked?
  3. What is the fastest way to add dollar signs to a reference?

Your score is saved to your dashboard.

Finished reading? Tick it off.

Create a free account to save your progress, streak and badges.

Next lesson

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.