Sample Data
This data shows two columns of numbers. Column A has 10, 20, 30 and Column B has 5, 15, 25. Column C is empty and will be used for formulas.
| Cell | Value |
|---|---|
| A1 | 10 |
| A2 | 20 |
| A3 | 30 |
| B1 | 5 |
| B2 | 15 |
| B3 | 25 |
| C1 | |
| C2 | |
| C3 |
Jump into concepts and practice - no test required
This data shows two columns of numbers. Column A has 10, 20, 30 and Column B has 5, 15, 25. Column C is empty and will be used for formulas.
| Cell | Value |
|---|---|
| A1 | 10 |
| A2 | 20 |
| A3 | 30 |
| B1 | 5 |
| B2 | 15 |
| B3 | 25 |
| C1 | |
| C2 | |
| C3 |
=A1+B1A B C 1 | 10 -> 5 | | 2 | 20 15 | | 3 | 30 25 | |
A B C 1 | 10 | 5 | 15 | 2 | 20 | 15 | | 3 | 30 | 25 | |
A1 when you copy a formula from one cell to another?A1 from one cell to another changes the reference to match the new location.$B$2.$B$2 correctly locks both column and row.=A1+B1 and you copy it to cell C2, what will the formula in C2 be?=A1+B1 uses relative references, so both A1 and B1 will shift down by one row when copied to C2.=SUM($A1:B$2) in cell C3. When copied to cell D4, what is the corrected formula to keep the intended reference range?$A1 locks column A but row changes; B$2 locks row 2 but column changes.$A1 to $A2 and B$2 to C$2.$A$1 must stay fixed when copying, so it needs absolute reference. The value in B2 should change row when copied down, so it stays relative.=B2*$A$1 keeps tax rate fixed and adjusts B2 row as copied down.