Challenge - 5 Problems
Aggregation Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2:00remaining
Calculate the average excluding zeros
You have numbers in cells A1 to A5: 10, 0, 20, 0, 30.
Which formula correctly calculates the average of only the non-zero numbers?
Which formula correctly calculates the average of only the non-zero numbers?
Attempts:
2 left
💡 Hint
Use a function that averages only cells meeting a condition.
✗ Incorrect
AVERAGEIF calculates the average of cells that meet the condition "not equal to zero". Option A correctly excludes zeros from the average.
📊 Formula Result
intermediate2:00remaining
Count only numeric values
Cells B1 to B6 contain: 5, "text", 10, "", 15, TRUE.
Which formula counts only the numeric values?
Which formula counts only the numeric values?
Attempts:
2 left
💡 Hint
Count only numbers, ignoring text and blanks.
✗ Incorrect
COUNT counts only numeric values. Here, it counts 5, 10, and 15, ignoring text, blanks, and TRUE.
❓ Function Choice
advanced2:00remaining
Sum values ignoring errors
You have numbers in C1:C5 but some cells contain errors (#DIV/0!).
Which formula sums only the valid numbers, ignoring errors?
Which formula sums only the valid numbers, ignoring errors?
Attempts:
2 left
💡 Hint
Replace errors with zero before summing.
✗ Incorrect
IFERROR replaces errors with 0, so SUM sums only valid numbers. Option D correctly handles errors.
❓ data_analysis
advanced2:00remaining
Average with multiple conditions
In columns D and E, you have sales data and regions.
Which formula calculates the average sales in region "West" where sales are above 100?
Which formula calculates the average sales in region "West" where sales are above 100?
Attempts:
2 left
💡 Hint
Use a function that supports multiple conditions for averaging.
✗ Incorrect
AVERAGEIFS calculates average with multiple criteria. Option B correctly averages sales >100 in region West.
🎯 Scenario
expert2:00remaining
Dynamic count excluding blanks and errors
You want to count how many cells in F1:F20 contain valid numbers, excluding blanks and errors.
Which formula achieves this correctly?
Which formula achieves this correctly?
Attempts:
2 left
💡 Hint
Combine checks for numbers and errors using array formulas.
✗ Incorrect
SUMPRODUCT with ISNUMBER and NOT(ISERROR) counts only valid numbers, excluding blanks and errors. Option A is correct.