0
0
Excelspreadsheet~20 mins

AVERAGE function in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
AVERAGE Function Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2: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)?
A30
B26
C24
D20
Attempts:
2 left
💡 Hint
AVERAGE ignores empty cells and calculates the mean of the numbers present.
Function Choice
intermediate
2: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?
A=AVERAGEIF(B1:B6, "<0")
B=SUM(B1:B6)/COUNT(B1:B6)
C=AVERAGEIF(B1:B6, ">0")
D=AVERAGE(B1:B6)
Attempts:
2 left
💡 Hint
Use AVERAGEIF to apply a condition to the average calculation.
📊 Formula Result
advanced
2: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")?
A9
B15
C10
D45
Attempts:
2 left
💡 Hint
AVERAGEIF excludes zeros with the condition "<>0".
🎯 Scenario
advanced
2: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?
A=AVERAGE(OFFSET(D6,-2,0,3,1))
B=AVERAGE(D4:D6)
C=AVERAGE(D3:D5)
D=AVERAGE(D1:D3)
Attempts:
2 left
💡 Hint
OFFSET can create a dynamic range starting 2 rows above D6 with height 3.
data_analysis
expert
2: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?
A=AVERAGE(E1:E5)
B=AVERAGEIF(E1:E5, ">0")
C=SUM(E1:E5)/COUNT(E1:E5)
D=AGGREGATE(1, 6, E1:E5)
Attempts:
2 left
💡 Hint
AGGREGATE with function 1 (AVERAGE) and option 6 ignores errors.