Complete the code to sort the sales data in ascending order by the 'Category' field.
SORT([Category], [1])In Tableau, ASC is used to sort data in ascending order.
Complete the code to sort the sales data in descending order by the 'Profit' field.
SORT([Profit], [1])Use DESC to sort data from largest to smallest values.
Fix the error in the code to sort the 'Region' field in descending order.
SORT([Region], [1])The correct keyword for descending sort in Tableau is DESC. UP and DOWN are not valid.
Fill both blanks to sort the 'Sales' field in ascending order and the 'Quantity' field in descending order.
SORT([Sales], [1]) and SORT([Quantity], [2])
Use ASC for ascending sort on Sales and DESC for descending sort on Quantity.
Fill all three blanks to sort the 'Category' field ascending, 'Profit' descending, and 'Region' ascending.
SORT([Category], [1]), SORT([Profit], [2]), SORT([Region], [3])
Sort Category ascending (ASC), Profit descending (DESC), and Region ascending (ASC).