Challenge - 5 Problems
AVERAGEIF and AVERAGEIFS Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate2: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")?Attempts:
2 left
💡 Hint
Only numbers greater than 100 are included in the average.
✗ Incorrect
The numbers greater than 100 are 110, 130, and 120. Their average is (110 + 130 + 120) / 3 = 120.
📊 Formula Result
intermediate2: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")?Attempts:
2 left
💡 Hint
Filter sales where region is East and sales are greater than 150.
✗ Incorrect
East region sales are 200, 300, and 100. Among these, sales > 150 are 200 and 300. Average is (200 + 300) / 2 = 250.
📊 Formula Result
advanced2: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")?Attempts:
2 left
💡 Hint
Average scores where status is Pass and score is greater than 80.
✗ Incorrect
Pass scores > 80 are 85, 90, 88, 92, 95. Average is (85+90+88+92+95)/5 = 450/5 = 90.
🎯 Scenario
advanced2: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?
Attempts:
2 left
💡 Hint
Check the order of arguments in AVERAGEIF.
✗ Incorrect
AVERAGEIF syntax is AVERAGEIF(range, criteria, [average_range]). Option D uses E2:E10 as range but criteria is text "Completed" which is in F2:F10, so it causes wrong output or error.
❓ data_analysis
expert3: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")?Attempts:
2 left
💡 Hint
Filter sales where Region is North, Product is A, and Sales > 200.
✗ Incorrect
North & Product A sales > 200: 250, 350, 450, 600. Average is (250 + 350 + 450 + 600) / 4 = 1650 / 4 = 412.5.