When a formula is copied or dragged across cells using the fill handle, cell references shift based on their mathematical referencing syntax. Mastering the dollar sign ($) is the single most critical spreadsheet skill:
| Reference Type | Syntax Example | Behavior When Copied / Auto-Filled | Typical Use Case |
|---|---|---|---|
| Relative Reference | =A1 * B1 |
Both column and row coordinates adjust automatically relative to the new formula position (e.g., becomes =A2 * B2). |
Calculating line-item total price: Quantity × Unit Price down a table column. |
| Absolute Reference | =A1 * $E$1 |
Dollar signs lock both the column and row. Regardless of where the formula is copied, it permanently points to cell E1. |
Applying a single tax rate (e.g., 18% GST stored in cell E1) across hundreds of invoices. |
| Mixed Reference | =$A1 * B$1 |
One coordinate is locked while the other remains free to shift: $A1 locks column A; B$1 locks row 1. |
Creating two-dimensional multiplication tables or matrix interest calculations. |