Complete the formula to calculate the average of numbers in column B where the value in column A is "Apple".
=AVERAGEIF(A:A, [1], B:B)The criterion in AVERAGEIF must be a text string in quotes, so use "Apple".
Complete the formula to calculate the average of sales in column C where the region in column B is "East".
=AVERAGEIF(B:B, [1], C:C)The criterion must be a text string in quotes, so use "East".
Fix the error in the formula to average values in D:D where A:A is greater than 100.
=AVERAGEIF(A:A, [1], D:D)The criterion must be a string with the operator and number, so use ">100" in quotes.
Fill both blanks to calculate the average in column D where column A is "East" and column B is greater than 50.
=AVERAGEIFS(D:D, A:A, [1], B:B, [2])
Text criteria need quotes, so "East" for column A. For numbers with conditions, use ">50" as a string.
Fill all three blanks to average values in E:E where column A is "West", column B is less than 100, and column C equals "Completed".
=AVERAGEIFS(E:E, A:A, [1], B:B, [2], C:C, [3])
Text criteria must be in quotes: "West" and "Completed". Number condition with operator must be a string: "<100".