0
0
Tableaubi_tool~20 mins

Manual sort order in Tableau - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Manual Sort Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
🧠 Conceptual
intermediate
2:00remaining
Understanding Manual Sort Order in Tableau

In Tableau, you want to display product categories in a specific order: Electronics, Furniture, Office Supplies. Which method correctly applies a manual sort order?

AUse the default sort option which sorts categories by sales descending automatically.
BCreate a calculated field with alphabetical sorting and use it as the sort order.
CDrag and drop categories in the desired order directly on the axis or header in the view.
DApply a filter to show only the categories in the desired order.
Attempts:
2 left
💡 Hint

Think about how Tableau allows you to reorder items visually without changing data.

dax_lod_result
intermediate
2:00remaining
Manual Sort Order Using a Sort Index

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}
  )
ASORTBYCOLUMNS(Categories, Categories[SortIndex], ASC)
BORDERBY(Categories, Categories[Category], ASC)
CFILTER(Categories, Categories[SortIndex] > 0)
DTOPN(3, Categories, Categories[Category], ASC)
Attempts:
2 left
💡 Hint

Look for the function that sorts by a specific column in ascending order.

visualization
advanced
2:00remaining
Visualizing Manual Sort Order in Tableau

You created a manual sort order for regions: East, West, North, South. Which visualization best shows the manual order applied correctly?

AA scatter plot with regions randomly ordered.
BA pie chart with regions sorted alphabetically.
CA line chart with regions sorted by total sales descending.
DA bar chart with regions ordered East, West, North, South on the axis.
Attempts:
2 left
💡 Hint

Manual sort order affects the axis order in charts like bar charts.

🔧 Formula Fix
advanced
2:00remaining
Debugging Manual Sort Order Not Applying

You manually reordered categories in Tableau, but the view still shows alphabetical order. What is the most likely cause?

AThe data source is missing the categories column.
BThe field is sorted by a measure or another field overriding manual sort.
CThe workbook is in read-only mode preventing sorting.
DThe filter is excluding all categories.
Attempts:
2 left
💡 Hint

Think about what can override manual sorting in Tableau.

🎯 Scenario
expert
3:00remaining
Implementing Manual Sort Order with Multiple Dimensions

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?

AManually drag and drop categories and regions separately in their respective shelves or axes to set order.
BApply a filter to show only the desired categories and regions in default order.
CCreate a combined calculated field concatenating category and region and sort alphabetically.
DUse a parameter to switch between sorting by category or region.
Attempts:
2 left
💡 Hint

Manual sorting works independently on each dimension in Tableau.