In Tableau, you want to display product categories in a specific order: Electronics, Furniture, Office Supplies. Which method correctly applies a manual sort order?
Think about how Tableau allows you to reorder items visually without changing data.
Manual sort order in Tableau is done by dragging and dropping items directly in the view to reorder them as you want. This overrides automatic sorting.
You have a table with product categories and a custom sort index column to define manual order. Which DAX expression correctly returns the categories sorted by this manual order?
Categories =
DATATABLE(
"Category", STRING, {"Electronics", "Furniture", "Office Supplies"},
"SortIndex", INTEGER, {1, 2, 3}
)Look for the function that sorts by a specific column in ascending order.
SORTBYCOLUMNS sorts the table by the SortIndex column, which defines the manual order.
You created a manual sort order for regions: East, West, North, South. Which visualization best shows the manual order applied correctly?
Manual sort order affects the axis order in charts like bar charts.
Bar charts show categories on an axis, so manual sorting is visible as the order of bars.
You manually reordered categories in Tableau, but the view still shows alphabetical order. What is the most likely cause?
Think about what can override manual sorting in Tableau.
If a field is sorted by a measure or another field, manual drag-and-drop sorting is overridden and not applied.
You have two dimensions: Category and Region. You want to manually sort categories as Electronics, Furniture, Office Supplies and regions as East, West, North, South. How do you implement manual sort order for both dimensions simultaneously in Tableau?
Manual sorting works independently on each dimension in Tableau.
You must manually reorder each dimension separately by dragging items in their respective shelves or axes to apply manual sort order for both.