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 data types
What is the result of the formula
A1: 10
A2: "5" (text)
A3: 15
A4: TRUE
A5: 20
=SUM(A1:A5) if the cells contain the following values?A1: 10
A2: "5" (text)
A3: 15
A4: TRUE
A5: 20
Attempts:
2 left
💡 Hint
Remember that SUM ignores text and treats TRUE as 1.
✗ Incorrect
SUM adds numbers and treats TRUE as 1, but ignores text. So it sums 10 + 15 + 1 + 20 = 46.
📊 Formula Result
intermediate2:00remaining
SUM function with non-contiguous ranges
What is the result of the formula
A1: 5
A2: 10
A3: 15
C1: 20
C2: 25
=SUM(A1:A3, C1:C2) if the cells contain:A1: 5
A2: 10
A3: 15
C1: 20
C2: 25
Attempts:
2 left
💡 Hint
Add all values from both ranges.
✗ Incorrect
SUM adds all numbers in A1:A3 (5+10+15=30) and C1:C2 (20+25=45). Total is 30 + 45 = 75.
❓ Function Choice
advanced2:00remaining
Choosing the right function for conditional sum
You want to sum values in column B only if the corresponding cell in column A is "Yes". Which formula should you use?
Attempts:
2 left
💡 Hint
Look for a function that sums with a condition.
✗ Incorrect
SUMIF(range, criteria, sum_range) sums values in sum_range where range meets criteria. Option A is correct syntax. Option D (SUMIFS) is also valid. Option B is invalid syntax. Option C causes an error because array multiplication is not supported directly in SUM.
📊 Formula Result
advanced2:00remaining
SUM function with error values in range
What happens when you use
A1: 10
A2: #DIV/0!
A3: 20
A4: 30
=SUM(A1:A4) if:A1: 10
A2: #DIV/0!
A3: 20
A4: 30
Attempts:
2 left
💡 Hint
SUM stops if any cell in range has an error.
✗ Incorrect
If any cell in the range has an error like #DIV/0!, SUM returns that error instead of a number.
🎯 Scenario
expert3:00remaining
Summing values with dynamic range using INDIRECT
You want to sum values in column B from row 1 to a row number specified in cell D1. Which formula correctly does this?
Attempts:
2 left
💡 Hint
Use INDIRECT to build a range from text.
✗ Incorrect
INDIRECT("B1:B" & D1) creates a range from B1 to B plus the row number in D1. SUM then adds that range. Option A is invalid syntax. Option A tries to mix range and INDIRECT incorrectly. Option A has incorrect INDIRECT argument.