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