Challenge - 5 Problems
Reference Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2:00remaining
What is the output of this formula referencing a cell range?
Given the values in cells A1=5, A2=10, and A3=15, what is the result of the formula
=SUM(A1:A3)?Attempts:
2 left
💡 Hint
SUM adds all numbers in the range.
✗ Incorrect
The formula sums 5 + 10 + 15, resulting in 30.
📊 Formula Result
intermediate2:00remaining
What happens when you copy a formula with relative references?
If cell B1 contains
=A1+10 and you copy this formula to cell B2, what will the formula in B2 be?Attempts:
2 left
💡 Hint
Relative references adjust based on the new location.
✗ Incorrect
Copying a relative reference formula down one row changes A1 to A2.
❓ Function Choice
advanced2:00remaining
Which formula keeps the reference fixed when copied?
You want to always refer to cell A1 in your formula, even when copying it to other cells. Which formula correctly does this?
Attempts:
2 left
💡 Hint
Use $ to fix both column and row.
✗ Incorrect
The $ before column and row fixes the reference to A1 absolutely.
🎯 Scenario
advanced2:00remaining
What is the result when a formula references a deleted row?
If cell B1 contains
=A1+10 and row 1 is deleted, what will be the formula and result in B1 after deletion?Attempts:
2 left
💡 Hint
Deleting a referenced cell breaks the reference.
✗ Incorrect
Deleting row 1 removes A1, causing the formula to show #REF! error.
❓ data_analysis
expert3:00remaining
How many unique values are counted with mixed relative and absolute references?
You have values in A1:A5 as {2, 2, 3, 4, 4}. In B1 you enter
=COUNTIF($A$1:$A$5, A1) and copy it down to B5. How many cells in B1:B5 will show the value 2?Attempts:
2 left
💡 Hint
COUNTIF counts how many times the value appears in the fixed range.
✗ Incorrect
The value 2 appears twice in A1:A5, so cells with 2 in column A show 2 in column B.