Challenge - 5 Problems
AVERAGE Function Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2:00remaining
Calculate the average of a range with some empty cells
Given the values in cells A1 to A5 as 10, 20, (empty), 40, 50, what is the result of the formula
=AVERAGE(A1:A5)?Attempts:
2 left
💡 Hint
AVERAGE ignores empty cells and calculates the mean of the numbers present.
✗ Incorrect
The formula calculates the average of 10, 20, 40, and 50. Empty cells are ignored. So, (10 + 20 + 40 + 50) / 4 = 120 / 4 = 30.
❓ Function Choice
intermediate2:00remaining
Choose the correct formula to average only positive numbers
You have numbers in B1:B6: -5, 10, 15, -3, 20, 0. Which formula calculates the average of only the positive numbers?
Attempts:
2 left
💡 Hint
Use AVERAGEIF to apply a condition to the average calculation.
✗ Incorrect
AVERAGEIF with condition ">0" averages only positive numbers: 10, 15, and 20. So, (10 + 15 + 20) / 3 = 15.
📊 Formula Result
advanced2:00remaining
Average ignoring zeros in a range
Cells C1 to C5 contain: 5, 0, 15, 0, 25. What is the result of
=AVERAGEIF(C1:C5, "<>0")?Attempts:
2 left
💡 Hint
AVERAGEIF excludes zeros with the condition "<>0".
✗ Incorrect
The formula averages only 5, 15, and 25. Sum is 45, count is 3, so average is 15.
🎯 Scenario
advanced2:00remaining
Calculate average of last 3 entries in a column
Column D has numbers in D1 to D6: 10, 20, 30, 40, 50, 60. You want to calculate the average of the last 3 numbers (40, 50, 60) using a formula. Which formula will do this correctly?
Attempts:
2 left
💡 Hint
OFFSET can create a dynamic range starting 2 rows above D6 with height 3.
✗ Incorrect
OFFSET(D6,-2,0,3,1) creates a range from D4 to D6. Averaging this gives the average of last 3 entries.
❓ data_analysis
expert2:00remaining
Identify the average after filtering out errors
Cells E1 to E5 contain: 10, #DIV/0!, 20, #N/A, 30. Which formula correctly calculates the average ignoring error values?
Attempts:
2 left
💡 Hint
AGGREGATE with function 1 (AVERAGE) and option 6 ignores errors.
✗ Incorrect
AVERAGE and SUM/COUNT will error because of error cells. AVERAGEIF ignores errors but also ignores zeros and negatives. AGGREGATE(1,6,range) calculates average ignoring errors only.