Dashboard Mode - Mixed references ($A1, A$1)
Goal
Understand how mixed cell references work in Excel formulas and see how they help when copying formulas across rows and columns.
Understand how mixed cell references work in Excel formulas and see how they help when copying formulas across rows and columns.
| A | B | C | |
|---|---|---|---|
| 1 | 10 | 20 | 30 |
| 2 | 5 | 15 | 25 |
| 3 | 2 | 4 | 6 |
=A$1+B$1 in cell D2=$A1+$B1 in cell D2=A$1+B$1 from D2 across D2:F4=B$1+C$1 (20 + 30 = 50)=$A1+$B1 from D2 across D2:F4=$A2+$B2 (5 + 15 = 20)+----------------------+----------------------+----------------------+ | KPI Card 1 | KPI Card 2 | | | (D2: =A$1+B$1) | (D2: =$A1+$B1) | | +----------------------+----------------------+----------------------+ | | | | | Table: Formulas with mixed references (D2:F4) | | Left: =A$1+B$1 copied across columns and rows | | Right: =$A1+$B1 copied across columns and rows | +-----------------------------------------------------------------+
There are no filters or slicers in this simple dashboard. The main interaction is copying formulas across cells to see how mixed references behave differently depending on which part is fixed.
If you copy the formula =A$1+B$1 from D2 to E3, what is the formula in E3 and what is the result?
Answer: Formula in E3 is =B$1+C$1. It adds values in row 1, columns B and C: 20 + 30 = 50.
If you copy the formula =$A1+$B1 from D2 to F4, what is the formula in F4 and what is the result?
Answer: Formula in F4 is =$A3+$B3. It adds values in row 3, columns A and B: 2 + 4 = 6.