Challenge - 5 Problems
SUM Function Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2:00remaining
SUM function with mixed cell references
Given the following values in cells:
A1=5, A2=10, B1=3, B2=7
What is the result of the formula
A1=5, A2=10, B1=3, B2=7
What is the result of the formula
=SUM(A1:A2, B1)?Excel
=SUM(A1:A2, B1)
Attempts:
2 left
💡 Hint
Remember SUM adds all numbers in the ranges and individual cells listed.
✗ Incorrect
The formula sums A1 and A2 (5 + 10 = 15) plus B1 (3), total 18.
❓ Function Choice
intermediate2:00remaining
Choosing the correct SUM formula for non-adjacent cells
You want to add values in cells A1, C1, and E1 only. Which formula correctly sums these cells?
Attempts:
2 left
💡 Hint
SUM can take multiple individual cells separated by commas.
✗ Incorrect
Option D correctly sums the three individual cells. Option D and B use invalid range syntax. Option D sums A1 to C1 (which includes B1) plus E1, which is not what is asked.
📊 Formula Result
advanced2:30remaining
SUM function with dynamic range using INDIRECT
If cell A1 contains the text 'B1:B3' and cells B1=2, B2=4, B3=6, what is the result of
=SUM(INDIRECT(A1))?Excel
=SUM(INDIRECT(A1))
Attempts:
2 left
💡 Hint
INDIRECT converts text to a cell reference range.
✗ Incorrect
INDIRECT(A1) becomes the range B1:B3. SUM adds 2 + 4 + 6 = 12.
🎯 Scenario
advanced3:00remaining
SUM function ignoring errors in range
Cells A1=5, A2=#DIV/0!, A3=10. Which formula will sum only the numeric values ignoring the error?
Attempts:
2 left
💡 Hint
Use a formula that checks for numbers before summing.
✗ Incorrect
Option B uses an array formula to sum only numbers, ignoring errors. Option B returns an error. Option B sums only positive numbers but errors cause failure. Option B returns an error due to the error cell.
❓ data_analysis
expert3:00remaining
Analyzing SUM with mixed data types in a range
Given the range A1:A5 contains: 3, "5", TRUE, 2, "text" (text string). What is the result of
=SUM(A1:A5)?Excel
=SUM(A1:A5)
Attempts:
2 left
💡 Hint
SUM ignores all text strings (even numeric-looking ones) and treats TRUE as 1.
✗ Incorrect
SUM ignores text strings ("5" and "text"), treats TRUE as 1, and sums the numbers 3 and 2. Total: 3 + 1 + 2 = 6.