Cell Referencing
Master Excel formulas through relative and absolute references
Most Excel users think =A2 simply means 'get data from cell A2', but this understanding is only partially correct and can lead to confusion when copying formulas.
How Cell References Really Work
| Feature | What Users Think | What Excel Actually Does |
|---|---|---|
| Formula =A2 in cell A1 | Get data from cell A2 | Get value from 1 row below |
| Formula =A2 in cell C3 | Get data from cell A2 | Get value from 1 row up, 2 columns left |
Test Your Understanding
Copy C3 to D3
Result will be 0 because formula looks 2 rows up and 2 columns left from D3, finding cell B1 which is empty
Copy C3 to A2
Result will be #REF! error because there is no cell 2 rows up and 2 columns left from A2
Types of Cell References
Relative Reference (A1)
Changes when copied to different cells based on relative position. Most common type used in formulas.
Absolute Reference ($A$1)
Always refers to the exact same cell regardless of where the formula is copied. Uses dollar signs before both column and row.
Mixed Reference ($A1 or A$1)
Locks either the column or row while allowing the other to change relatively when copied.
Mixed Reference Examples
| Feature | Reference Type | Behavior When Copied |
|---|---|---|
| =$A1 | Column A locked | Row changes relatively |
| =A$1 | Row 1 locked | Column changes relatively |
Using =B1*A2 for a multiplication table creates a mess because each cell multiplies the cell above by the cell to the left, rather than maintaining proper row and column references.
Creating a Proper Multiplication Table
Lock the Header Row
Use =$B$1 to always reference the multiplication factor in row 1
Lock the Header Column
Use =$A2 to always reference the multiplication factor in column A
Combine References
Formula =$B$1*$A2 ensures proper multiplication table behavior when filled across and down
Mastery Checklist
Know that A2 means a specific position relative to the current cell
Apply $A$1 when you always want to reference the exact same cell
Use $A1 or A$1 when you need to lock only column or row respectively
Master the combination of reference types for complex formulas
Key Takeaways










