2.1 Relative, absolute and mixed references
Checked against Microsoft's Excel for Windows keyboard references, August 2026
What you'll be able to do
Write one formula and fill it across a whole grid. Know before you look that every copy landed right, because you chose which parts of it move and which stay.
Before you start
Open the formula drills workbook. The reference drills in it are built for this lesson.
The work
- Same either way: one cell address can be written four ways, and each behaves differently when the formula is copied.
A1moves in both directions.$A$1never moves.$A1keeps its column and lets its row move.A$1does the opposite. The dollar sign holds whatever it stands in front of. That is the whole rule, and the rest of this lesson is practice. - Same either way: never type the dollar signs. Edit the formula with F2, put the insertion point on the reference, and press F4. It cycles
A1→$A$1→A$1→$A1and back around. Stop at the one you mean. - Same either way: to fill a formula down, select it with the empty cells below and press CtrlD. Use CtrlShiftDown Arrow to select to the end of the block. Then check one copy: open it with F2. Excel colours each reference and the cell it points at, so you can see where the copy landed.
- Same either way: the best practice for mixed references is a multiplication grid. Put numbers down column A and numbers across row 1. In
B2write one formula,=$A2*B$1. The column is held on the first reference, the row on the second. Fill it right and down, and every cell is correct. Work out why before you move on: each copy always needs column A, and always needs row 1. - Same either way: when a value has a meaning, a name beats dollar signs. Select the tax-rate cell and give it a name: press AltM, M, D to open the Define Name dialog on the Formulas tab, and call it TaxRate. Now write
=B2*TaxRate. It reads clearly and copying cannot move it. Press F3 inside any formula to paste from the names you have defined. - Same either way: a reference can cross sheets.
=Sheet2!B4reads from another sheet, and typing the sheet name with an exclamation mark works in any formula. References to other workbooks work too, but they break when files move, so bring the data into one workbook where you can.
Try it
Do the reference drills in the workbook, then build the multiplication grid from one formula. Before each fill, say out loud what will move. After it, open a far corner with F2 and check that you were right.
Check yourself
What is the difference between $A1 and A$1 when copied one cell right and one cell down?
$A1 keeps pointing at column A, but its row slides down. A$1 keeps row 1, but its column slides right. The dollar holds only what it stands in front of.
Which key cycles a reference through its four forms, and where must the insertion point be?
F4, while editing the formula with F2 and with the insertion point on that reference.
A tax rate lives in one cell used by forty formulas. Dollar signs or a name — and why?
A name like TaxRate. The formulas become readable, the reference cannot lose its dollars by accident, and F3 pastes the name anywhere.
=B2*C1 was meant to multiply every amount by the one rate in C1, but filling down gave zeros. What happened?
C1 moved as it filled. Row 2's copy reads C2, which is empty. It needed holding: =B2*C$1, or $C$1, or a name.
Go deeper
We haven't checked most of these for screen reader use yet.
Back to Relative, absolute and mixed references: work through the checklist