Tableau Sort

Tableau sort is the process of arranging or ordering the data in Ascending Order or Descending Order. For example, when we show products by region report, it would be helpful and practical to show the products in any manner.

In this article, we will show you how to perform sorting in Tableau reports with examples. We will use the report we created in our previous article for this demo.

Tableau Sort from Axis

There are multiple ways to perform sorting in Tableau. From the screenshot below, you can observe that a tiny little button will display near that when you hover over the Sales Amount. This button can sort the Sales Amount data in Ascending or Descending orders.

For now, we selected the Tableau Sort in Ascending Order.

Tableau Sort in Y Axis 1

Once you click that button, Color (group) data will be sorted by its sales amount in Ascending Order. Visit Data Labels in Reports to understand the Tableau Data Source.

Measure Field Order By Ascending 2

Tableau Sort ASC and DESC using Toolbar

In the second method, click the Sort button in the Tableau toolbar. As you can see, when you hover over the button, it will show the tooltip saying that it will order the data by Color (group) in Ascending by SalesAmount.

Tableau Sort using Toolbar Button 3

Once you click the button, Color (group) data will be ordered by its sales amount in Ascending.

Ascending 4

For the Descending order, Click the next sort button in the toolbar. The screenshot below shows that when you hover over it, Tableau shows the tooltip saying that it will sort the data by Color (group) in descending by its sales amount.

Tableau Sort order by descending 5

Once you click the button, Color (group) data will be ordered by its sales amount in Descending as shown below.

descending order 6

Tableau sort from Columns or Rows Shelf

From the Tableau row Shelf, Select and Right Click on the Dimension on which you want to perform the sort. Please select the Sort.. option from the context menu.

Tableau Sort using Column and Rows Shelfs fields 7

Once you click on the option, a new window will open to configure the Tableau sorting options. By default, data will be in the order specified in the data source. But we can change using the options specified in this section.

Sort Windows Options 8

sort by field

If you select Tableau Sort by Field, we must choose the field name from the drop-down list. Remember, if you are viewing Sales amount data in a report, you should select the same field here. Otherwise, the results may look strange.

Choose the Field and Order type 9

sort by Manual

If you choose the Sort by option Manual, we can manually change the order using the Up and Down buttons.

Up and Down options 10

For now, we selected the option as Field and selected Sales Amount in descending.

Choose the Aggregation and click ok 11

Once you click the OK button, sort the Color (group) data and order by its sales amount in Descending.

Chart in Descending Order 12

Until now, it looks easy to implement it. We are performing sort operations on Tableau Color (group), which is lying inside the English Country Region Name. Let’s see what will happen if we perform on the Country column. Select and Right Click on the English Country Region name Dimension and select the Sort.. option from the context menu.

Tableau Sort by multiple columns 13

Here also, we have chosen the option as Tableau sort Field and selected Sales Amount in descending order.

Choose the Field for Descending Order 14

Once you click the OK button, you may be surprised by the outcome. If you observe the screenshot below, the Country is ordered by its sales amount in Descending. But you can’t identify it. If you look closely, the United States is in the first place, and the United Kingdom is in 3rd place.

Tableau Sort 15

To understand sorting better, let’s remove the color (group) from the Tableau Columns cards and see the result.

Tableau Sort 16

Tableau Sort by Parameter

Apart from the above options, you can also sort the report using multiple measures with the help of the parameter and the calculated field. For this, we use the same bar chart without any predefined sorting.

Click the down arrow beside the search box and choose Create a new Parameter option. Please change the data type to string and list as the allowable values. Next, type the measure names (Column names) you want to use as the sorting field. Remember, the name should exactly match the column name.

Create a Parameter to save the Measures

Click the down arrow beside the Sorting List, and select the Show Parameter option to see them. To make the string parameter work in the report, we must write an expression; for this, we need a calculated field. So, click the Down arrow beside the search bar and choose Create Calculated Field.

The expression below uses the parameter name as the source, and if its value is some text, match that with the actual measure. The text within the ” is the parameter value, and the text within the [] is the actual measure value.

CASE [Sorting List]
WHEN "Sales Amount" THEN [Sales Amount]
WHEN "Order Quantity" THEN [Order Quantity]
WHEN "Profit" THEN [Profit]
WHEN "Total Product Cost" THEN [Total Product Cost]
END
Create a Calculated Field to write the Case function for Tableau sorting

Right-click on the EnglishCountryRegionName Dimension and select the Sort.. option to open the window below. Instead of selecting any existing columns, let me choose the newly created calculated field. It means. the calculated field will act as the sorting field in descending order.

Choose the Calculated field

Let me add the remaining measures: Order Quantity, Profit, and Total Product Cost to the report Labelsto see the output.

As the Sales Amount is the default parameter value, the countries in the bar chart have been sorted by sales in descending order.

Sorting Tableau Bar Chart using Measures

Let me change the Parameter value to the Order Quantity and see the report.

Sorting Tableau Chart report using Parameter