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?
✗ Incorrect
SUMIF checks the range A2:A10 for values greater than 5 and adds corresponding values from B2:B10.
Which function allows multiple conditions to sum values?
✗ Incorrect
SUMIFS lets you add numbers based on more than one condition.
In SUMIFS, what is the first argument?
✗ Incorrect
The first argument in SUMIFS is the sum range, the cells to add.
What happens if you omit sum_range in SUMIF?
✗ Incorrect
If sum_range is missing, SUMIF adds the cells in the range argument that meet the criteria.
Which of these is a valid SUMIF criteria to find cells equal to "Banana"?
✗ Incorrect
Criteria must be in quotes for text, so "Banana" is correct.
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.