Recall & Review
beginner
What does the FILTER function do in Google Sheets?
The FILTER function returns only the rows or columns from a range that meet a specific condition or set of conditions.
Click to reveal answer
beginner
Syntax of the FILTER function?
FILTER(range, condition1, [condition2, ...])<br><br>Where
range is the data to filter, and condition1, condition2, etc. are logical tests that decide which rows or columns to keep.Click to reveal answer
beginner
How to filter rows where column A is greater than 10?
Use
=FILTER(A1:B10, A1:A10 > 10).<br>This returns rows from A1:B10 where values in column A are more than 10.Click to reveal answer
intermediate
What happens if no rows meet the FILTER condition?
FILTER returns a
#N/A error saying "No matches are found in FILTER evaluation." You can handle this with IFERROR to show a friendly message.Click to reveal answer
intermediate
Can FILTER use multiple conditions? How?
Yes! You can add multiple conditions separated by commas, which act like AND.<br>Example:
=FILTER(A1:C10, A1:A10>5, B1:B10="Yes") filters rows where column A is >5 AND column B equals "Yes".Click to reveal answer
What does the FILTER function return?
✗ Incorrect
FILTER returns only rows or columns that satisfy the given condition(s).
Which is the correct syntax for FILTER?
✗ Incorrect
FILTER requires the range first, then one or more conditions separated by commas.
How do you filter rows where column B equals "Yes"?
✗ Incorrect
Use the equality condition B1:B10="Yes" to filter rows where column B is exactly "Yes".
What does FILTER return if no data matches the condition?
✗ Incorrect
FILTER returns a #N/A error with message "No matches are found in FILTER evaluation."
How to apply multiple conditions in FILTER?
✗ Incorrect
Multiple conditions are separated by commas and act like AND, meaning all must be true.
Explain how to use the FILTER function to show only rows where sales are above 100.
Think about the range of data and the condition that checks sales values.
You got /4 concepts.
Describe what happens when FILTER finds no matching data and how to handle it.
Consider what the user sees and how to show a friendly message instead.
You got /4 concepts.