replicating formulas Flashcards
(7 cards)
Term: Relative Addressing
๐ Meaning: Cell references change when copied to another location.
๐งฎ Example:
Original: =A1+B1
Copied to next row: =A2+B2
Term: Absolute Addressing
๐ Meaning: Cell references stay fixed when copied, using dollar signs $.
๐งฎ Example:
=$A$1 + $B$1 โ Always refers to A1 and B1, no matter where itโs copied.
Term: Mixed Addressing
๐ Meaning: Only one part (row or column) stays fixed.
๐งฎ Example:
=$A1 โ Column A is fixed, row changes.
=A$1 โ Row 1 is fixed, column changes.
Term: Naming of Ranges
๐ Meaning: A range of cells is given a custom name for easier use in formulas.
๐งฎ Example:
Define range A1:A5 as Sales, then use =SUM(Sales).
Operation: Copying a Formula
๐ Effect:
With relative references, cell addresses change based on the new position.
With absolute references, cell addresses stay the same.
Named ranges stay unchanged.
Operation: Moving a Formula
๐ Effect:
Relative references adjust based on the new location.
Absolute and named references remain unchanged.
The formula itself is moved, not duplicated.
Operation: Deleting a Cell in a Formula Range
Effect:
If a cell used in a formula is deleted, you may get an error (#REF!).
The formula breaks if its referenced cell no longer exists.