0
0
Excelspreadsheet~5 mins

COUNTIF and COUNTIFS in Excel - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What does the COUNTIF function do in Excel?
COUNTIF counts the number of cells in a range that meet a single condition or criteria.
Click to reveal answer
beginner
How is COUNTIFS different from COUNTIF?
COUNTIFS counts the number of cells that meet multiple conditions across one or more ranges, while COUNTIF only handles one condition.
Click to reveal answer
beginner
Write the formula to count cells in range A1:A10 that are greater than 5.
The formula is =COUNTIF(A1:A10, ">5"). It counts cells with values greater than 5.
Click to reveal answer
intermediate
Explain the syntax of COUNTIFS function.
COUNTIFS syntax: =COUNTIFS(criteria_range1, criteria1, [criteria_range2, criteria2], ...). You provide pairs of ranges and their conditions.
Click to reveal answer
intermediate
Can COUNTIF and COUNTIFS handle text criteria? Give an example.
Yes. For example, =COUNTIF(B1:B10, "apple") counts cells exactly equal to "apple". You can also use wildcards like "app*" to count cells starting with "app".
Click to reveal answer
What will =COUNTIF(A1:A5, ">10") do?
ACount cells with values less than 10 in A1:A5
BCount cells with values greater than 10 in A1:A5
CCount all cells in A1:A5
DCount cells equal to 10 in A1:A5
Which function counts cells based on multiple conditions?
ACOUNTIFS
BCOUNTIF
CSUMIF
DAVERAGEIF
How would you count cells in B1:B10 that contain the text "cat" anywhere inside?
A=COUNTIF(B1:B10, "cat")
B=COUNTIF(B1:B10, "cat*")
C=COUNTIF(B1:B10, "?cat")
D=COUNTIF(B1:B10, "*cat*")
What is wrong with this formula? =COUNTIFS(A1:A5, ">5", B1:B10, "<3")
ACOUNTIFS only accepts one range
BCOUNTIFS cannot use > or < operators
CRanges A1:A5 and B1:B10 must be the same size
DCriteria must be numbers, not strings
If you want to count cells in C1:C10 that are not empty, which formula is correct?
A=COUNTIF(C1:C10, "<>")
B=COUNTIF(C1:C10, "?*")
C=COUNTIF(C1:C10, "*")
D=COUNTIF(C1:C10, "")
Describe how to use COUNTIF to count cells with a single condition. Include an example.
Think about counting cells greater than a number or matching text.
You got /4 concepts.
    Explain how COUNTIFS works with multiple conditions and why ranges must be the same size.
    Consider how Excel checks each row across ranges.
    You got /4 concepts.