Concept Flow
A B 1 | 10 | =A1 | 2 | 20 | =A2 | 3 | 30 | =A3 | Arrows: B1 -> A1 B2 -> A2 B3 -> A3
Each formula in column B uses a relative reference to the cell in column A on the same row. When copied down, the reference adjusts to the row.
Jump into concepts and practice - no test required
A B 1 | 10 | =A1 | 2 | 20 | =A2 | 3 | 30 | =A3 | Arrows: B1 -> A1 B2 -> A2 B3 -> A3
=A1 copied down to B2 and B3 becomes =A2 and =A3 respectivelyThe formula in B1 is =A1. When copied down to B2, it changes to =A2, and in B3 it changes to =A3. This is how relative references work.
| Cell | Formula | Evaluated Value |
|---|---|---|
| B1 | =A1 | 10 |
| B2 | =A2 | 20 |
| B3 | =A3 | 30 |
| Cell | Referenced Cell | Referenced Value |
|---|---|---|
| B1 | A1 | 10 |
| B2 | A2 | 20 |
| B3 | A3 | 30 |
A1 when you copy a formula containing it from cell B1 to cell B2?A1 becomes A2.B1 to the value in the current row's A column cell?A1 as a relative reference that changes row when copied.B1 is fixed to row 1, but we want it relative, just use B1 as relative reference.C1 contains the formula =A1+B1 and you copy this formula to cell C2, what will be the formula in C2 and its result if A2=3 and B2=4?A1 becomes A2 and B1 becomes B2.A2=3 and B2=4, the formula =A2+B2 calculates 3 + 4 = 7.=A1+B$1 in cell C2. When copied to cell C3, what is the correct adjusted formula?A1 is relative (both row and column change), B$1 fixes the row 1 but allows column to change.A1 becomes A2. B$1 keeps row 1 fixed, column unchanged (no column shift), so it stays B$1.D2 that multiplies the value in the same row's B column by the value in cell C1. You want to copy this formula down column D without changing the reference to C1. Which formula should you enter in D2?B2 should be relative to change row when copied down. The reference to C1 should be fixed to not change when copied.C1 and keep B2 relativeC1 with $C$1. Keep B2 relative.