0
0
Excelspreadsheet~20 mins

SUMIF and SUMIFS in Excel - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
SUMIF and SUMIFS Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
📊 Formula Result
intermediate
2:00remaining
SUMIF with a single condition
Given a list of sales amounts in column B and their corresponding product categories in column A, what is the result of the formula =SUMIF(A2:A6, "Fruit", B2:B6) if the data is:

Data:
A2:A6 = {"Fruit", "Vegetable", "Fruit", "Dairy", "Fruit"}
B2:B6 = {10, 20, 15, 5, 25}

What is the sum of sales for the category "Fruit"?
A50
B40
C25
D30
Attempts:
2 left
💡 Hint
Add only the amounts where the category is exactly "Fruit".
📊 Formula Result
intermediate
2:00remaining
SUMIFS with multiple conditions
You have a table with sales data:

Column A: Product Type
Column B: Region
Column C: Sales Amount

Data:
A2:A6 = {"Fruit", "Fruit", "Vegetable", "Fruit", "Vegetable"}
B2:B6 = {"North", "South", "North", "North", "South"}
C2:C6 = {100, 150, 200, 50, 300}

What is the result of the formula =SUMIFS(C2:C6, A2:A6, "Fruit", B2:B6, "North")?
A100
B250
C50
D150
Attempts:
2 left
💡 Hint
Sum sales where product is "Fruit" and region is "North".
Function Choice
advanced
2:00remaining
Choosing the correct formula for conditional sum
You want to sum values in column C where column A equals "Fruit" and column B is not "South". Which formula correctly calculates this?
A=SUMIF(A2:A10, "Fruit", C2:C10) - SUMIF(B2:B10, "South", C2:C10)
B=SUMIFS(C2:C10, A2:A10, "Fruit", B2:B10, "<>South")
C=SUMIFS(C2:C10, A2:A10, "Fruit", B2:B10, "South")
D=SUMIF(B2:B10, "<>South", C2:C10)
Attempts:
2 left
💡 Hint
Use SUMIFS with a condition that excludes "South".
📊 Formula Result
advanced
2:00remaining
SUMIF with wildcard characters
Given the data in column A:
A2:A6 = {"Apple", "Pineapple", "Banana", "Grape", "Apple Pie"}
and sales in column B:
B2:B6 = {10, 20, 15, 5, 25}

What is the result of =SUMIF(A2:A6, "*Apple*", B2:B6)?
A35
B30
C55
D25
Attempts:
2 left
💡 Hint
The asterisks (*) match any text before or after "Apple".
🎯 Scenario
expert
3:00remaining
Complex conditional sum with date and text criteria
You have a sales table:

Column A: Product
Column B: Sale Date (dates)
Column C: Region
Column D: Sales Amount

Data example:
A2:A6 = {"Fruit", "Vegetable", "Fruit", "Fruit", "Vegetable"}
B2:B6 = {"2024-01-01", "2024-01-05", "2024-02-01", "2024-01-15", "2024-02-10"}
C2:C6 = {"North", "South", "North", "South", "North"}
D2:D6 = {100, 200, 150, 50, 300}

Which formula sums sales for "Fruit" products sold in "North" region during January 2024?
A=SUMIFS(D2:D6, A2:A6, "Fruit", C2:C6, "North", B2:B6, ">=2024-01-01", B2:B6, "<=2024-01-31")
B=SUMIFS(D2:D6, A2:A6, "Fruit", C2:C6, "North", B2:B6, ">=2024/01/01", B2:B6, "<=2024/01/31")
C=SUMIFS(D2:D6, A2:A6, "Fruit", C2:C6, "North", B2:B6, ">=01/01/2024", B2:B6, "<=01/31/2024")
D=SUMIFS(D2:D6, A2:A6, "Fruit", C2:C6, "North", B2:B6, ">=1-Jan-2024", B2:B6, "<=31-Jan-2024")
Attempts:
2 left
💡 Hint
Use ISO date format (YYYY-MM-DD) in criteria strings for dates.