Complete the formula to sum values in column B where column A equals "Apples".
=SUMIF(A:A, [1], B:B)The criteria must be a text string in quotes, so use "Apples".
Complete the formula to sum values in column C where column B is greater than 100.
=SUMIF(B:B, [1], C:C)Criteria with operators must be inside quotes, so use ">100".
Fix the error in this SUMIFS formula to sum values in D where A is "Bananas" and B is less than 50.
=SUMIFS(D:D, A:A, [1], B:B, [2])
The first criteria must be text in quotes: "Bananas" and the second criteria must be "<50" in quotes.
Fill both blanks to sum values in D where A is "Bananas" and B is less than 50.
=SUMIFS(D:D, A:A, [1], B:B, [2])
Both criteria must be strings in quotes: "Bananas" and "<50".
Fill all three blanks to sum values in E where A is "Oranges", B is greater than 20, and C equals "Yes".
=SUMIFS(E:E, A:A, [1], B:B, [2], C:C, [3])
All criteria must be strings in quotes: "Oranges", ">20", and "Yes".