Complete the formula to sum values in column B where column A equals "Apple".
=SUMIF(A:A, [1], B:B)The SUMIF function needs the criteria as a text string, so it must be enclosed in quotes.
Complete the formula to sum values in column C where column B is greater than 100.
=SUMIF(B:B, [1], C:C)The criteria must be a string with the comparison operator and number, like ">100".
Fix the error in the formula to sum values in column D where column A equals "Banana" and column B is less than 50.
=SUMIFS(D:D, A:A, [1], B:B, [2])
Text criteria like "Banana" must be in quotes. Also, comparison criteria like "<50" must be in quotes.
Fill both blanks to sum values in column E where column C equals "Yes" and column D is not equal to 0.
=SUMIFS(E:E, C:C, [1], D:D, [2])
Use "Yes" to match text in column C and "<>0" to exclude zeros in column D.
Fill all three blanks to sum values in column F where column A equals "Orange", column B is greater than 20, and column C equals "Complete".
=SUMIFS(F:F, A:A, [1], B:B, [2], C:C, [3])
Use "Orange" and "Complete" as text criteria, and ">20" for the numeric comparison.