0
0
Excelspreadsheet~20 mins

Why reference types matter in Excel - Challenge Your Understanding

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Reference Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2: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)?
A30
B15
C5
DError
Attempts:
2 left
💡 Hint
SUM adds all numbers in the range.
📊 Formula Result
intermediate
2: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?
A=A2+10
B=A1+10
C=B1+10
D=B2+10
Attempts:
2 left
💡 Hint
Relative references adjust based on the new location.
Function Choice
advanced
2: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?
A=$A1+5
B=A1+5
C=A$1+5
D=$A$1+5
Attempts:
2 left
💡 Hint
Use $ to fix both column and row.
🎯 Scenario
advanced
2: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?
A=A1+10 with original value
B=A2+10 with correct value
C=#REF!+10 with error
D=A1+10 with #REF! error
Attempts:
2 left
💡 Hint
Deleting a referenced cell breaks the reference.
data_analysis
expert
3: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?
A3
B2
C1
D0
Attempts:
2 left
💡 Hint
COUNTIF counts how many times the value appears in the fixed range.