Blog
Using the FILTER Function in Excel
								The FILTER function in Excel provides a powerful way to filter data based on specific criteria. Unlike the built-in filter tool, the FILTER function allows you to filter by multiple criteria and even sort the results. This makes it ideal for more complex filtering tasks.
Syntax:
excelCopy codeFILTER(array, range=criteria, [if_empty])
- array (required): The range of data you want to filter.
 - range=criteria (required): The condition or criteria to filter the data by. This can be a cell reference, text, or number.
 - if_empty (optional): The value to display if no results are found. If omitted, Excel will return a #CALC! error.
 
Basic Usage Examples
- Filter by Single Criterion To filter data based on a single condition, such as a specific category, use the following formula:excelCopy code
=FILTER(A2:D13, B2:B13="Electronics")- Explanation: Filters the data in the range A2:D13 where the values in column B are “Electronics.”
 
 - Filter Using Criteria from a Cell You can also use criteria from another cell:excelCopy code
=FILTER(A2:D13, B2:B13=B15)- Explanation: Filters the data in the range A2:D13 based on the value in cell B15.
 
 - Filter by Numerical Value If you want to filter by a number, no quotation marks are needed:excelCopy code
=FILTER(A2:D13, D2:D13=10)- Explanation: Filters the data in the range A2:D13 where values in column D are 10.
 
 - Handle Empty Results with 
if_emptyIf no data matches the filter, the #CALC! error appears by default. You can replace this with custom text:excelCopy code=FILTER(A2:D13, D2:D13=75, "None")- Explanation: Filters the data in A2:D13 where column D equals 75. If no data matches, it displays “None.”
 
 
Filtering with Multiple Criteria
You can filter data using multiple criteria by combining them with logical operators:
- AND operator (
*): Requires all conditions to be true.excelCopy code=FILTER(A2:D13, (A2:A13="West")*(B2:B13="Electronics"))- Explanation: Filters the data where column A is “West” and column B is “Electronics.”
 
 - OR operator (
+): Requires at least one condition to be true.excelCopy code=FILTER(A2:D13, (A2:A13="West")+(B2:B13="Electronics"))- Explanation: Filters the data where column A is “West” or column B is “Electronics.”
 
 
Sorting Filtered Data
You can combine the FILTER function with the SORT function to sort the filtered results. Here are some examples:
- Sort Filtered Data in Descending OrderexcelCopy code
=SORT(FILTER(A2:D13, B2:B13="Electronics"), 4, -1)- Explanation: Filters the data where column B is “Electronics” and sorts the results by the 4th column (Loss) in descending order (-1).
 
 - Sort Filtered Data in Ascending OrderexcelCopy code
=SORT(FILTER(A2:D13, B2:B13="Electronics"), 4, 1)- Explanation: Filters the data where column B is “Electronics” and sorts the results by the 4th column in ascending order (1).
 
 
Key Takeaways
- The FILTER function allows you to filter data based on specific conditions.
 - You can use logical operators to filter by multiple criteria with AND (
*) or OR (+). - The SORT function can be added to sort the filtered data by any column in ascending or descending order.
 - The third argument if_empty lets you replace the #CALC! error with a custom message when no results are found.
 
The FILTER function is a powerful tool that enables dynamic filtering of data without needing to manually adjust settings or use Excel’s built-in filter. When combined with SORT, it provides a robust solution for complex data analysis.