Challenge - 5 Problems
Absolute Reference Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2:00remaining
Understanding Absolute Reference Output
Given the formula
=B1*$A$1 in cell C1, if B1 contains 5 and A1 contains 10, what will be the value in C2 after copying this formula to cell C2 where B2 contains 7?Attempts:
2 left
💡 Hint
Remember that $A$1 is an absolute reference and does not change when copied.
✗ Incorrect
The formula multiplies the value in column B by the fixed value in cell A1. When copied to C2, it becomes =B2*$A$1. Since B2 is 7 and A1 is 10, the result is 7 * 10 = 70.
❓ Function Choice
intermediate2:00remaining
Choosing the Correct Absolute Reference
You want to multiply each value in column B by the fixed value in cell A1 and copy the formula down column C. Which formula should you enter in cell C1 to ensure the reference to A1 does not change when copied?
Attempts:
2 left
💡 Hint
Absolute references use $ before both column and row.
✗ Incorrect
Using $A$1 locks both the column and row, so when copying the formula down, the reference to A1 stays fixed.
🎯 Scenario
advanced2:00remaining
Fixing a Formula to Use Absolute Reference Correctly
You have the formula
=B1*A1 in cell C1 and you copy it down to C2. The formula in C2 becomes =B2*A2, but you want to always multiply by the value in A1. Which formula in C1 will fix this issue?Attempts:
2 left
💡 Hint
Use $ to lock both column and row of the fixed cell.
✗ Incorrect
Only =B1*$A$1 locks the reference to cell A1 completely, so when copied down, it always multiplies by A1.
📊 Formula Result
advanced2:00remaining
Result of Mixed Absolute and Relative References
If cell A1 contains 2, B1 contains 3, and you enter the formula
=A$1+B1 in cell C1 and copy it to C2 where B2 is 5, what is the value in C2?Attempts:
2 left
💡 Hint
The row number 1 is fixed for A1, but the column A can change if copied sideways.
✗ Incorrect
In C2, the formula becomes =A$1+B2. A$1 fixes the row to 1 but column A stays the same. So it is 2 + 5 = 7.
❓ data_analysis
expert3:00remaining
Analyzing Formula Behavior with Absolute References
You have a table where column A has prices, column B has quantities, and cell D1 has a tax rate. You enter the formula
=A2*B2*(1+$D$1) in cell C2 and copy it down to C10. What does the absolute reference $D$1 ensure in this calculation?Attempts:
2 left
💡 Hint
Absolute references lock both column and row.
✗ Incorrect
The $D$1 reference locks the tax rate cell so it does not change when copying the formula down. This ensures the same tax rate is applied to all rows.