Challenge - 5 Problems
Named Range Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2: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?Attempts:
2 left
💡 Hint
Think about what the SUM function does with a range of numbers.
✗ Incorrect
The named range 'Sales' refers to cells with values 10, 20, 30, 40, and 50. SUM adds all these values: 10+20+30+40+50 = 150.
❓ Function Choice
intermediate2: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?Attempts:
2 left
💡 Hint
Average means adding all values and dividing by the count.
✗ Incorrect
The AVERAGE function calculates the mean of the numbers in the named range 'Prices'. SUM adds all values, COUNT counts how many cells have numbers, MAX finds the largest number.
🎯 Scenario
advanced2: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?Attempts:
2 left
💡 Hint
Think about what happens when you include more cells in a sum.
✗ Incorrect
Changing the named range to include more cells means SUM(Data) now adds more values, so the total will likely increase unless new cells are zero or negative.
📊 Formula Result
advanced2: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"))?Attempts:
2 left
💡 Hint
INDIRECT converts text to a reference, so it uses the named range.
✗ Incorrect
INDIRECT("List1") returns the range A1:A3. SUM adds 5+10+15 = 30.
❓ data_analysis
expert3: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)?Attempts:
2 left
💡 Hint
SUMPRODUCT multiplies pairs and sums them; then divide by total discounts.
✗ Incorrect
SUMPRODUCT multiplies each cost by its discount: (100*10)+(200*20)+(150*15)+(300*30)+(250*25) = 1000+4000+2250+9000+6250 = 22500. SUM(Discounts) = 10+20+15+30+25 = 100. Divide 22500 by 100 = 225.