Complete the formula to calculate the average of values in range B2:B10 where the condition in A2:A10 equals "Apple".
=AVERAGEIF(A2:A10, [1], B2:B10)The condition argument in AVERAGEIF must be a text string with quotes, so use "Apple".
Complete the formula to calculate the average of values in C2:C15 where the values in B2:B15 are greater than 50.
=AVERAGEIF(B2:B15, [1], C2:C15)The condition must be a string with the comparison operator and number, so use ">50".
Fix the error in the formula to average values in D2:D20 where A2:A20 equals "Yes" and B2:B20 is less than 100.
=AVERAGEIFS(D2:D20, A2:A20, [1], B2:B20, [2])
In AVERAGEIFS, criteria must be text strings with quotes, so use "Yes" and "<100".
Fill both blanks to calculate the average of E2:E30 where C2:C30 equals "Completed" and D2:D30 is greater than or equal to 75.
=AVERAGEIFS(E2:E30, C2:C30, [1], D2:D30, [2])
Criteria must be text strings with quotes, so use "Completed" and ">=75".
Fill all three blanks to calculate the average of F2:F40 where B2:B40 equals "Active", C2:C40 is less than 20, and D2:D40 is not equal to "Pending".
=AVERAGEIFS(F2:F40, B2:B40, [1], C2:C40, [2], D2:D40, [3])
All criteria must be text strings with quotes. Use "Active", "<20", and "<>Pending" for the conditions.