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 average ignoring empty cells
Given the values in cells A1 to A5 as 10, 20, , 40, 50 (where the third cell is empty), what is the result of the formula
=AVERAGE(A1:A5)?Attempts:
2 left
💡 Hint
Remember that empty cells are ignored in AVERAGE calculation.
✗ Incorrect
AVERAGE sums the numbers 10 + 20 + 40 + 50 = 120 and divides by 4 (non-empty cells), so 120/4 = 30.
❓ Function Choice
intermediate2:00remaining
Choose the correct formula to average only positive numbers
You have numbers in B1:B6: 5, -3, 8, 0, -1, 7. Which formula correctly calculates the average of only the positive numbers?
Attempts:
2 left
💡 Hint
Use AVERAGEIF to filter values based on a condition.
✗ Incorrect
AVERAGEIF with ">0" averages only numbers greater than zero, ignoring negatives and zero.
📊 Formula Result
advanced2:00remaining
AVERAGE with mixed data types
Cells C1 to C5 contain: 10, "text", 20, TRUE, 30. What is the result of
=AVERAGE(C1:C5)?Attempts:
2 left
💡 Hint
AVERAGE ignores text and logical values unless they are numbers.
✗ Incorrect
Only numbers 10, 20, and 30 are counted. Sum is 60, count is 3, average is 20.
🎯 Scenario
advanced2:00remaining
Calculate average excluding zeros
You want to find the average of values in D1:D7 but exclude zeros from the calculation. Which formula should you use?
Attempts:
2 left
💡 Hint
Use AVERAGEIF with a condition to exclude zeros.
✗ Incorrect
AVERAGEIF with "<>0" averages only cells not equal to zero.
❓ data_analysis
expert3:00remaining
Find the average of last 3 entries in a growing list
Column E has a list of numbers starting from E1 downwards. The list grows over time. Which formula calculates the average of the last 3 numeric entries in column E, assuming no blanks between them?
Attempts:
2 left
💡 Hint
Use OFFSET with COUNTA to dynamically select last 3 cells.
✗ Incorrect
COUNTA counts entries, OFFSET moves down to last 3 entries, AVERAGE calculates their mean.