0
0
Excelspreadsheet~20 mins

AVERAGEIF and AVERAGEIFS in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
AVERAGEIF and AVERAGEIFS Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
Calculate average with AVERAGEIF for sales above 100
Given the sales data in cells A2:A6 as {90, 110, 130, 80, 120}, what is the result of the formula =AVERAGEIF(A2:A6, ">100")?
A120
B110
C130
D115
Attempts:
2 left
💡 Hint
Only numbers greater than 100 are included in the average.
📊 Formula Result
intermediate
2:00remaining
Using AVERAGEIFS with multiple criteria
You have sales data in column A (A2:A7) and region data in column B (B2:B7). Sales: {200, 150, 300, 250, 100, 400}, Regions: {"East", "West", "East", "West", "East", "West"}. What is the result of =AVERAGEIFS(A2:A7, B2:B7, "East", A2:A7, ">150")?
A200
B275
C250
D300
Attempts:
2 left
💡 Hint
Filter sales where region is East and sales are greater than 150.
📊 Formula Result
advanced
2:00remaining
AVERAGEIFS with text and numeric criteria
Given data: Scores in C2:C8 = {85, 90, 75, 88, 92, 70, 95}, Status in D2:D8 = {"Pass", "Pass", "Fail", "Pass", "Pass", "Fail", "Pass"}. What is the result of =AVERAGEIFS(C2:C8, D2:D8, "Pass", C2:C8, ">80")?
A90
B88
C87.5
D89.5
Attempts:
2 left
💡 Hint
Average scores where status is Pass and score is greater than 80.
🎯 Scenario
advanced
2:00remaining
Identify the error in AVERAGEIF formula
You want to average values in E2:E10 where corresponding values in F2:F10 are "Completed". Which formula will cause an error?
A=AVERAGEIF(F2:F10, "=Completed", E2:E10)
B=AVERAGEIF(F2:F10, "Completed", E2:E10)
C=AVERAGEIF(F2:F10, "Completed")
D=AVERAGEIF(E2:E10, "Completed", F2:F10)
Attempts:
2 left
💡 Hint
Check the order of arguments in AVERAGEIF.
data_analysis
expert
3:00remaining
Analyze average sales with multiple criteria using AVERAGEIFS
You have a sales table with columns: Sales (G2:G12), Region (H2:H12), and Product (I2:I12). Sales: {100, 200, 150, 300, 250, 400, 350, 100, 450, 500, 600}, Region: {"North", "South", "North", "South", "North", "South", "North", "South", "North", "South", "North"}, Product: {"A", "A", "B", "B", "A", "B", "A", "B", "A", "B", "A"}. What is the result of =AVERAGEIFS(G2:G12, H2:H12, "North", I2:I12, "A", G2:G12, ">200")?
A450
B412.5
C350
D400
Attempts:
2 left
💡 Hint
Filter sales where Region is North, Product is A, and Sales > 200.