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?✗ Incorrect
COUNTIF counts cells matching the condition. Here, it counts cells with values greater than 10.
Which function counts cells based on multiple conditions?
✗ Incorrect
COUNTIFS allows multiple criteria, COUNTIF only one.
How would you count cells in B1:B10 that contain the text "cat" anywhere inside?
✗ Incorrect
Using wildcards *cat* counts cells containing "cat" anywhere.
What is wrong with this formula?
=COUNTIFS(A1:A5, ">5", B1:B10, "<3")✗ Incorrect
All criteria ranges in COUNTIFS must be the same size.
If you want to count cells in C1:C10 that are not empty, which formula is correct?
✗ Incorrect
"<>" means not equal to empty, so it counts non-empty cells.
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.