Using the SORT and FILTER functions together in Excel

Top image for the lesson on using SORT FILTER Microsoft Excel nested formula combination, lesson by spreadsheetclass.com

If you want to both sort and filter your data with a single formula in Microsoft Excel, you can do this by combining the SORT function with the FILTER function.

In this article I will show you multiple ways of combining these two formulas so that you can sort and filter with a single formula, as well as have the ability to sort and filter by multiple conditions, in a single formula.

To sort and filter your data in a single formula, follow these steps:

  1. Start by typing your filter formula, like this: =FILTER(A3:C100,C3:C100="Text")
  2. Then use your filter function as the range for a sort function like this: =SORT(FILTER(A3:C100,C3:C100="Text"), 1, 1, FALSE)

SORT FILTER formulas in Excel:

Sort and filter

  • =SORT(FILTER(A3:C100,C3:C100="Math"),1,1,FALSE)

Sort by a column and filter by multiple conditions (AND logic)

  • =SORT(FILTER(A3:C100,(C3:C100="Math")*(B3:B100>0.5)),1,1,FALSE)

Sort by a column and filter by multiple conditions (OR logic)

  • =SORT(FILTER(A3:C100,(C3:C100="Math")+(B3:B100>0.5)),1,1,FALSE)

This lesson focuses on using the SORT and FILTER function in Excel. Click here to read the Google Sheets version of this article

SORT / FILTER nested formula

The formulas in this lesson are what are called "nested formulas", which means that we are using / nesting one function "inside" of another function, all within the same Excel formula.

When formulas are nested, you may sometimes hear someone refer to the formula that has another formula nested inside of it, as being the formula that is "wrapped" around the nested formula. For example in the formula below, the FILTER function is nested inside of the SORT function, and conversely the SORT function is "wrapped" around the FILTER function.

You can use the output of your filter function as your sort function range like this: =SORT(FILTER(A2:B100,C2:B100=100″), 2, -1, FALSE)

This article focuses on combining the SORT and FILTER functions, but if you want to learn how to use them separately, check out the articles linked below:

Filter function

Sort function

Sort and filter formula example

Here is a basic example of using the SORT function with the FILTER function in Excel.

Below is example student data that shows the student's name, and their grades in multiple classes. We will both filter and sort the data with a single formula.

The task: Filter the student data to show only math classes, and sort the result by student name in ascending order

The logic: Filter the range A3:C100, where C3:C100 is equal to the text "Math", and then sort by column 1

The formula: The formula below, is entered in the blue cell (E3), for this example

=SORT(FILTER(A3:C100,C3:C100="Math"),1,1,FALSE)

Example of the Excel SORT FILTER nested formula spreadsheetclass.com

Note that both of the formulas below do the same thing, since the default for the SORT function is to sort by the first column in ascending order if criteria is not specified for the SORT function.

=SORT(FILTER(A3:C100,C3:C100="Math"),1,1,FALSE)

=SORT(FILTER(A3:C100,C3:C100="Math"))

Sort and filter by multiple conditions (AND logic)

In this example I will show you how to use the SORT function with the FILTER function, while filtering by multiple conditions.

In this example we will use "AND logic" for the filter criteria, meaning that both of the filter conditions must be true to be included in the filter output. This is accomplished by separating the filter conditions with an asterisk, and wrapping the conditions in parenthesis.

The task: Filter the student data to show math classes that are above 50%, and sort the result by grade and then by student name, both in ascending order

The logic: Filter the range A3:C100, where C3:C100 is equal to the text "Math", and where B3:B100 is greater than 0.5. Then sort the result by column 1 in ascending order

The formula: The formula below, is entered in the blue cell (E3), for this example

=SORT(FILTER(A3:C100,(C3:C100="Math")*(B3:B100>0.5)),1,1,FALSE)

Example of the Excel SORT FILTER nested formula, sorting and filtering by multiple conditions (AND logic)

This content was originally created by SpreadsheetClass.com

Sort and filter by multiple conditions (OR logic)

In this example we will also sort by multiple columns and filter by multiple conditions, but this time we will use "OR logic" for the filter criteria, meaning that either of the filter conditions cant be true to be included in the filter output. This is accomplished by separating the filter conditions with a plus sign, and wrapping the conditions in parenthesis.

The task: Filter the student data to show either math classes, or classes that are above 50%, and sort the result by grade and then by student name, both in ascending order

The logic: Filter the range A3:C100, where C3:C100 is equal to the text "Math", or where B3:B100 is greater than 0.5. Then sort the result by column 1 in ascending order.

The formula: The formula below, is entered in the blue cell (E3), for this example

=SORT(FILTER(A3:C100,(C3:C100="Math")+(B3:B100>0.5)),1,1,FALSE)

Example of the Excel SORT FILTER nested formula, sorting and filtering by multiple conditions (OR logic)

I hope that this helps you understand how to use the SORT and FILTER function together for your own task!

-Corey Bustos

Click here to get your Google Sheets cheat sheet

Or click here to take the Google Sheets dashboards course