The SORT functions in Excel has been created to sort your data dynamically.
Let's see how to use it with many examples and animations.
The SORT function
The SORT function is available only with Microsoft 365 and Excel Online and it's very easy to use it.
- Write the name SORT in a cell
- Select the column to sort

SORT and Remove duplicates
On the previous example, even if the result is correct, we return many times the same value.
In this situation, it's better to use 2 functions
- UNIQUE to remove duplicates first,
- and then SORT the result.
In our example, the formula will be
=SORT(UNIQUE(Table1[Fruit]))



Sort on multi-columns
For the moment, we have used the SORT function on a single column. But, you can selected a table with many columns as first argument.



With this writing, the key sort is by default the first column of the selection.
Specify the sorting column
Now, if you want to sort on a specific column, you must fill the second argument of the function SORT.
- Select your range of cells to sort
- Write the column index of the sorting key.
=SORT(Table1[[Shop]:[Date]];3)



Ascending or descending order
By default, the SORT function returns the result in ascending order. But if you want the result in descending order, you just have to indicate the value -1 in third argument.
=SORT(Table1[[Shop]:[Date]];3;-1)


