0
0
Google Sheetsspreadsheet~5 mins

FILTER function in Google Sheets - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
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?
AOnly the data rows that meet the condition
BAll data regardless of condition
COnly the first row of data
DA sum of all values
Which is the correct syntax for FILTER?
AFILTER(range)
BFILTER(range, condition1, condition2, ...)
CFILTER(condition1, range)
DFILTER(range, condition1 + condition2)
How do you filter rows where column B equals "Yes"?
A=FILTER(A1:C10, B1:B10="Yes")
B=FILTER(A1:C10, B1:B10>"Yes")
C=FILTER(A1:C10, B1:B10<"Yes")
D=FILTER(A1:C10, B1:B10<>"Yes")
What does FILTER return if no data matches the condition?
AThe entire range
BAn empty cell
CZero
D#N/A error
How to apply multiple conditions in FILTER?
AUse semicolons between conditions
BAdd conditions with plus signs (+)
CSeparate conditions by commas (AND logic)
DPut all conditions inside one string
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.