0
0
Google Sheetsspreadsheet~20 mins

SUMIF and SUMIFS in Google Sheets - 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
Calculate total sales for a specific product
You have a list of sales in column A (Product names) and amounts in column B. Which formula correctly sums sales only for the product named "Apple"?
A=SUMIF(A2:A10, "Apple", B2:B10)
B=SUMIF(B2:B10, "Apple", A2:A10)
C=SUMIF(A2:A10, B2:B10, "Apple")
D=SUMIF("Apple", A2:A10, B2:B10)
Attempts:
2 left
💡 Hint
Remember, SUMIF sums values in the sum range where the criteria range matches the condition.
📊 Formula Result
intermediate
2:00remaining
Sum sales for a product with quantity greater than 5
You have product names in A2:A15, quantities sold in B2:B15, and sales amounts in C2:C15. Which formula sums sales amounts only for "Banana" where quantity sold is more than 5?
A=SUMIF(A2:A15, "Banana", C2:C15) + SUMIF(B2:B15, ">5", C2:C15)
B=SUMIFS(C2:C15, A2:A15, "Banana", B2:B15, ">5")
C=SUMIFS(C2:C15, A2:A15, ">5", B2:B15, "Banana")
D=SUMIFS(A2:A15, C2:C15, "Banana", B2:B15, ">5")
Attempts:
2 left
💡 Hint
SUMIFS sums values in the first range where all criteria match in pairs.
Function Choice
advanced
2:00remaining
Choose the formula to sum sales for dates in January 2024
You have sales dates in A2:A50 and sales amounts in B2:B50. Which formula sums sales only for dates in January 2024?
A=SUMIFS(B2:B50, A2:A50, ">=2024-01-01", A2:A50, "<=2024-01-31")
B=SUMIFS(B2:B50, A2:A50, ">=DATE(2024,1,1)", A2:A50, "<=DATE(2024,1,31)")
C=SUMIFS(B2:B50, A2:A50, ">="&DATE(2024,1,1), A2:A50, "<="&DATE(2024,1,31))
D=SUMIF(A2:A50, ">=DATE(2024,1,1)", B2:B50) - SUMIF(A2:A50, ">DATE(2024,1,31)", B2:B50)
Attempts:
2 left
💡 Hint
Use DATE function with & to concatenate criteria strings properly.
data_analysis
advanced
2:00remaining
Find total sales for products starting with 'S' and quantity less than 10
You have product names in A2:A100, quantities in B2:B100, and sales amounts in C2:C100. Which formula sums sales for products whose names start with 'S' and quantity is less than 10?
A=SUMIFS(C2:C100, A2:A100, "S*", B2:B100, "<10")
B=SUMIF(A2:A100, "S*", C2:C100) + SUMIF(B2:B100, "<10", C2:C100)
C=SUMIFS(C2:C100, A2:A100, "S", B2:B100, "<10")
D=SUMIFS(C2:C100, A2:A100, "*S", B2:B100, "<10")
Attempts:
2 left
💡 Hint
Use wildcard * to match text starting with a letter.
🎯 Scenario
expert
3:00remaining
Analyze sales with multiple criteria including blanks
You have a sales table with columns: Product (A2:A200), Region (B2:B200), Sales (C2:C200). Some Region cells are blank. You want to sum sales for product "Orange" only in rows where Region is NOT blank. Which formula achieves this?
A=SUMIF(C2:C200, A2:A200, "Orange")
B=SUMIFS(C2:C200, A2:A200, "Orange")
C=SUMIFS(C2:C200, A2:A200, "Orange", B2:B200, "")
D=SUMIFS(C2:C200, A2:A200, "Orange", B2:B200, "<>")
Attempts:
2 left
💡 Hint
Use "<>" as criteria to exclude blank cells.