0
0
Google Sheetsspreadsheet~20 mins

AVERAGEIF and AVERAGEIFS in Google Sheets - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
AVERAGEIF Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
Calculate average sales above a threshold
You have a list of sales amounts in cells A2:A10. Which formula correctly calculates the average of sales greater than 100?
A=AVERAGEIF(A2:A10, ">100")
B=AVERAGEIF(A2:A10, "<100")
C=AVERAGEIF(A2:A10, ">100", A2:A10)
D=AVERAGE(A2:A10)
Attempts:
2 left
💡 Hint
Remember AVERAGEIF needs the range to average if different from the criteria range.
📊 Formula Result
intermediate
2:00remaining
Average with multiple conditions
You have sales data in column A and regions in column B. Which formula calculates the average sales in region "East" where sales are above 200?
A=AVERAGEIFS(B2:B20, A2:A20, ">200", B2:B20, "East")
B=AVERAGEIF(B2:B20, "East", A2:A20) + AVERAGEIF(A2:A20, ">200", A2:A20)
C=AVERAGEIFS(A2:A20, B2:B20, "East", A2:A20, ">200")
D=AVERAGEIF(A2:A20, ">200", B2:B20)
Attempts:
2 left
💡 Hint
AVERAGEIFS uses average_range first, then pairs of criteria_range and criteria.
Function Choice
advanced
2:00remaining
Choosing the right function for conditional average
You want to calculate the average of values in C2:C15 where column A equals "Yes" and column B is greater than 50. Which function should you use?
AAVERAGEIFS
BCOUNTIF
CSUMIF
DAVERAGEIF
Attempts:
2 left
💡 Hint
Think about how many conditions you have.
🎯 Scenario
advanced
2:00remaining
Troubleshooting average with text values
You use =AVERAGEIF(A2:A10, ">50", B2:B10) but the result seems wrong. Column B contains numbers and some text like "N/A". What is the likely cause?
AThe criteria range and average range must be the same for AVERAGEIF.
BAVERAGEIF cannot handle criteria with ">50".
CThe formula should use AVERAGE instead of AVERAGEIF.
DText values in B2:B10 cause AVERAGEIF to ignore those cells in average calculation.
Attempts:
2 left
💡 Hint
Think about how text values affect average calculations.
data_analysis
expert
3:00remaining
Analyzing average with overlapping criteria
Given data in columns A (Category), B (Score), and C (Status), you want the average Score for Category "X" and Status not equal to "Complete". Which formula produces the correct result?
A=AVERAGEIFS(B2:B30, A2:A30, "X", C2:C30, "<>Complete")
B=AVERAGEIFS(B2:B30, A2:A30, "X", C2:C30, "Complete")
C=AVERAGEIF(B2:B30, "X", C2:C30)
D=AVERAGEIF(A2:A30, "X", B2:B30) - AVERAGEIF(C2:C30, "Complete", B2:B30)
Attempts:
2 left
💡 Hint
Use AVERAGEIFS with multiple criteria including not equal condition.