0
0
Excelspreadsheet~20 mins

Named ranges in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Named Range Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
Using Named Ranges in SUM Formula
You have a named range Sales referring to cells B2:B6 containing numbers. What is the result of the formula =SUM(Sales) if the cells contain 10, 20, 30, 40, and 50 respectively?
A100
B50
CSyntax Error
D150
Attempts:
2 left
💡 Hint
Think about what the SUM function does with a range of numbers.
Function Choice
intermediate
2:00remaining
Choosing the Correct Function with Named Ranges
You have a named range Prices referring to C2:C10. Which formula correctly calculates the average price?
A=AVERAGE(Prices)
B=SUM(Prices)
C=COUNT(Prices)
D=MAX(Prices)
Attempts:
2 left
💡 Hint
Average means adding all values and dividing by the count.
🎯 Scenario
advanced
2:00remaining
Impact of Changing Named Range Reference
You have a named range Data referring to D2:D5. The formula =SUM(Data) currently returns 100. If you change the named range Data to refer to D2:D7, what will happen to the formula result?
AThe sum will include more cells, so the result will likely increase.
BThe sum will stay the same because the formula does not update automatically.
CThe formula will return a #REF! error because the range changed.
DThe sum will decrease because the range is larger.
Attempts:
2 left
💡 Hint
Think about what happens when you include more cells in a sum.
📊 Formula Result
advanced
2:00remaining
Using Named Ranges with INDIRECT Function
You have a named range List1 referring to A1:A3 with values 5, 10, 15. What is the result of =SUM(INDIRECT("List1"))?
A#REF! error
B0
C30
D15
Attempts:
2 left
💡 Hint
INDIRECT converts text to a reference, so it uses the named range.
data_analysis
expert
3:00remaining
Analyzing Named Range Usage in a Complex Formula
Given named ranges: Costs = B2:B6 (values: 100, 200, 150, 300, 250), Discounts = C2:C6 (values: 10, 20, 15, 30, 25). What is the result of the formula =SUMPRODUCT(Costs, Discounts)/SUM(Discounts)?
A210
B225
CSyntax Error
D200
Attempts:
2 left
💡 Hint
SUMPRODUCT multiplies pairs and sums them; then divide by total discounts.