0
0
Google Sheetsspreadsheet~5 mins

SUMIF and SUMIFS in Google Sheets - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What does the SUMIF function do in Google Sheets?
SUMIF adds up numbers in a range that meet a single condition you set. For example, it can add all sales over $100.
Click to reveal answer
beginner
How is SUMIFS different from SUMIF?
SUMIFS adds numbers based on multiple conditions, while SUMIF uses only one condition. Use SUMIFS when you want to check more than one rule.
Click to reveal answer
beginner
Write the syntax of the SUMIF function.
SUMIF(range, criterion, [sum_range])<br> - range: cells to check the condition<br> - criterion: the condition to meet<br> - sum_range: cells to add if condition is true (optional)
Click to reveal answer
intermediate
What happens if you omit the sum_range in SUMIF?
If sum_range is left out, Google Sheets adds the cells in the range that meet the condition instead of a different set of cells.
Click to reveal answer
intermediate
Give an example of a SUMIFS formula with two conditions.
Example: =SUMIFS(C2:C10, A2:A10, ">=2023-01-01", B2:B10, "Apples")<br>This adds values in C2:C10 where dates in A2:A10 are on or after Jan 1, 2023, and B2:B10 equals "Apples".
Click to reveal answer
What does the formula =SUMIF(A1:A5, ">10") do?
AAdds numbers in A1:A5 greater than 10
BAdds numbers in A1:A5 less than 10
CCounts how many numbers are greater than 10
DAdds all numbers in A1:A5
Which function lets you add numbers based on multiple conditions?
ASUMIF
BCOUNTIF
CSUM
DSUMIFS
In SUMIF(range, criterion, sum_range), what is sum_range?
AThe cells to add if condition is true
BThe condition to meet
CThe cells to check the condition
DThe total sum of all cells
What will =SUMIFS(B2:B10, A2:A10, "=Red", C2:C10, ">5") do?
ACount how many cells are Red
BAdd B2:B10 where A2:A10 is Red or C2:C10 is greater than 5
CAdd B2:B10 where A2:A10 is Red and C2:C10 is greater than 5
DAdd all B2:B10 values
If you want to add sales only for "Apples", which formula is correct?
A=SUMIF(C2:C10, "Apples", B2:B10)
B=SUMIF(B2:B10, "Apples", C2:C10)
C=SUMIF(B2:B10, ">Apples", C2:C10)
D=SUMIF(C2:C10, ">Apples")
Explain how to use SUMIF to add values based on one condition. Include an example.
Think about adding sales only for a specific product.
You got /4 concepts.
    Describe a situation where SUMIFS is better than SUMIF and how to write the formula.
    Consider adding sales for a product in a specific month.
    You got /4 concepts.