Complete the code to sort the field alphabetically in Tableau calculated field.
SORT([Category], [1])Use ASC to sort the field alphabetically in ascending order.
Complete the code to sort the field by data source order in Tableau.
SORT([Region], [1])Use DATA_SOURCE_ORDER to sort the field in the order it appears in the data source.
Fix the error in the code to sort the field alphabetically ascending.
SORT([Product], [1])The correct sorting order for ascending alphabetical sort is ASC.
Fill both blanks to sort the field by data source order and then alphabetically descending.
SORT([Segment], [1]) THEN SORT([Segment], [2])
First sort by DATA_SOURCE_ORDER to keep data source order, then by DESC for descending alphabetical order.
Fill all three blanks to sort the field alphabetically ascending, then by data source order, and finally descending.
SORT([Category], [1]) THEN SORT([Category], [2]) THEN SORT([Category], [3])
Sort first alphabetically ascending (ASC), then by data source order (DATA_SOURCE_ORDER), and finally descending (DESC).