0
0
Google Sheetsspreadsheet~5 mins

AVERAGEIF and AVERAGEIFS in Google Sheets - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What does the AVERAGEIF function do in Google Sheets?
AVERAGEIF calculates the average (mean) of numbers in a range that meet a single condition.
Click to reveal answer
beginner
How is AVERAGEIFS different from AVERAGEIF?
AVERAGEIFS calculates the average of numbers in a range that meet multiple conditions at the same time.
Click to reveal answer
beginner
Write the syntax of AVERAGEIF.
AVERAGEIF(range, criterion, [average_range])<br><br>- range: cells to check the condition<br>- criterion: condition to meet<br>- average_range: cells to average (optional, if different from range)
Click to reveal answer
beginner
Write the syntax of AVERAGEIFS.
AVERAGEIFS(average_range, criteria_range1, criterion1, [criteria_range2, criterion2, ...])<br><br>- average_range: cells to average<br>- criteria_range1: first range to check<br>- criterion1: first condition<br>- Additional pairs for more conditions
Click to reveal answer
beginner
Example: How to find the average score of students who scored more than 70 using AVERAGEIF?
Use: =AVERAGEIF(B2:B10, ">70")<br>This averages scores in B2:B10 where the score is greater than 70.
Click to reveal answer
What does the AVERAGEIFS function allow you to do that AVERAGEIF does not?
ASum numbers based on one condition
BAverage numbers without any condition
CCount how many cells meet a condition
DAverage numbers based on multiple conditions
Which argument is optional in the AVERAGEIF function?
Acriterion
Baverage_range
Crange
Dnone
If you want to average values in C2:C10 where A2:A10 equals "Yes" and B2:B10 is greater than 50, which function should you use?
AAVERAGEIF
BSUMIF
CAVERAGEIFS
DCOUNTIF
What symbol is used in criteria to mean 'greater than' in AVERAGEIF?
A>
B<
C=
D!
True or False: AVERAGEIF can average cells based on text conditions like "apple".
ATrue
BFalse
COnly with numbers
DOnly with dates
Explain how you would use AVERAGEIF to find the average sales greater than $1000 in a list.
Think about which cells hold sales and what condition to write.
You got /4 concepts.
    Describe a situation where AVERAGEIFS is better than AVERAGEIF and how you would write the formula.
    Use more than one condition to filter data.
    You got /3 concepts.