0
0
Excelspreadsheet~5 mins

SUMIF and SUMIFS in Excel - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What does the SUMIF function do in Excel?
SUMIF adds up the numbers in a range that meet one specific condition. For example, it can add all sales amounts where the product is "Apples."
Click to reveal answer
beginner
How is SUMIFS different from SUMIF?
SUMIFS adds numbers based on multiple conditions. For example, it can add sales where the product is "Apples" and the region is "West."
Click to reveal answer
beginner
Write the syntax of the SUMIF function.
SUMIF(range, criteria, [sum_range])<br>• range: cells to check the condition<br>• criteria: condition to meet<br>• sum_range: cells to add if condition is true (optional)
Click to reveal answer
beginner
Write the syntax of the SUMIFS function.
SUMIFS(sum_range, criteria_range1, criteria1, [criteria_range2, criteria2], ...)<br>• sum_range: cells to add<br>• criteria_range1: first range to check<br>• criteria1: first condition<br>• Additional pairs for more conditions
Click to reveal answer
beginner
Can SUMIF and SUMIFS handle text conditions? Give an example.
Yes, they can. For example, SUMIF(A2:A10, "Apples", B2:B10) adds values in B2:B10 where A2:A10 equals "Apples."
Click to reveal answer
What will SUMIF(A2:A10, ">5", B2:B10) do?
AAdd values in A2:A10 where B2:B10 is greater than 5
BAdd values in B2:B10 where A2:A10 is greater than 5
CAdd all values in B2:B10
DAdd all values in A2:A10
Which function allows multiple conditions to sum values?
ASUMIF
BCOUNTIF
CSUM
DSUMIFS
In SUMIFS, what is the first argument?
ASum range
BCriteria 1
CCriteria range 1
DRange to check condition
What happens if you omit sum_range in SUMIF?
AExcel adds the cells in the range argument
BExcel returns an error
CExcel adds all numbers in the sheet
DExcel ignores the criteria
Which of these is a valid SUMIF criteria to find cells equal to "Banana"?
A<>Banana
B>Banana
C"Banana"
DBanana
Explain how to use SUMIF to add sales amounts only for a specific product.
Think about which cells hold product names and which hold sales numbers.
You got /4 concepts.
    Describe a situation where SUMIFS is better than SUMIF and how to write the formula.
    Use an example like summing sales for a product in a certain region.
    You got /5 concepts.