Recall & Review
beginner
What does the COUNTIF function do in Google Sheets?
COUNTIF counts the number of cells in a range that meet a single condition you specify. For example, it can count how many times a word or number appears.
Click to reveal answer
beginner
How is COUNTIFS different from COUNTIF?
COUNTIFS counts cells that meet multiple conditions at the same time. It lets you check more than one rule, like counting cells that are greater than 10 and less than 20.
Click to reveal answer
beginner
Write the formula to count cells in range A1:A10 that equal "Apple".
The formula is
=COUNTIF(A1:A10, "Apple"). It counts how many cells exactly say "Apple".Click to reveal answer
intermediate
Write a COUNTIFS formula to count cells where A1:A10 are "Apple" and B1:B10 are greater than 5.
Use
=COUNTIFS(A1:A10, "Apple", B1:B10, ">5"). It counts rows where both conditions are true.Click to reveal answer
beginner
Can COUNTIF and COUNTIFS work with text and numbers?
Yes! Both functions can count cells with text or numbers. You just write the condition accordingly, like "Apple" for text or ">10" for numbers.
Click to reveal answer
What does the formula
=COUNTIF(B2:B10, ">=50") do?✗ Incorrect
The formula counts cells with numbers greater than or equal to 50.
Which function counts cells based on multiple conditions?
✗ Incorrect
COUNTIFS lets you count cells that meet several conditions at once.
How would you count cells in A1:A20 that exactly say "Banana"?
✗ Incorrect
COUNTIF with the exact text "Banana" counts matching cells.
What will
=COUNTIFS(A1:A5, ">10", B1:B5, "<5") count?✗ Incorrect
COUNTIFS counts rows where both conditions are true together.
Can COUNTIF count cells with partial text matches using wildcards?
✗ Incorrect
COUNTIF supports wildcards like * (any characters) and ? (single character).
Explain how to use COUNTIF to count cells with a specific number or text.
Think about counting how many times a word or number appears in a list.
You got /4 concepts.
Describe a situation where COUNTIFS is more useful than COUNTIF.
Think about filtering data with more than one rule.
You got /4 concepts.