0
0
Tableaubi_tool~20 mins

Detail level of marks in Tableau - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
Detail Level Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
dax_lod_result
intermediate
2:00remaining
Calculate total sales at customer level using detail level of marks

You have a sales dataset with fields: CustomerID, OrderID, and SalesAmount. You want to calculate total sales per customer regardless of the view's aggregation level.

Which Tableau calculation correctly uses the detail level of marks to sum sales by customer?

A{INCLUDE [CustomerID]: SUM([SalesAmount])}
BSUM([SalesAmount])
C{FIXED [CustomerID]: SUM([SalesAmount])}
D{EXCLUDE [CustomerID]: SUM([SalesAmount])}
Attempts:
2 left
💡 Hint

Think about how to fix the aggregation at the customer level regardless of the view.

visualization
intermediate
2:00remaining
Identify correct detail level of marks for a scatter plot

You create a scatter plot showing SalesAmount on the Y-axis and Profit on the X-axis. You want each point to represent a unique OrderID. Which detail level of marks setting should you use?

AAdd <strong>OrderID</strong> to the Detail shelf
BAdd <strong>CustomerID</strong> to the Color shelf
CAdd <strong>Region</strong> to the Size shelf
DAdd <strong>Category</strong> to the Tooltip shelf
Attempts:
2 left
💡 Hint

Think about how Tableau defines each mark uniquely.

🧠 Conceptual
advanced
2:00remaining
Effect of adding dimensions to Detail shelf on mark count

In Tableau, what happens to the number of marks in a view when you add more dimensions to the Detail shelf?

AThe number of marks increases because each mark represents a more detailed combination of dimensions
BThe number of marks decreases because Tableau groups data more
CThe number of marks stays the same regardless of Detail shelf changes
DThe number of marks becomes zero until you add measures
Attempts:
2 left
💡 Hint

Think about how adding dimensions affects granularity.

🔧 Formula Fix
advanced
2:00remaining
Identify why marks are aggregated unexpectedly

You created a view with Category and Sub-Category on Rows and SUM(Sales) on Columns. You want each mark to represent individual products, but the marks aggregate at sub-category level. What is the likely cause?

ASUM(Sales) measure is not aggregated properly
BCategory and Sub-Category fields are on Columns shelf instead of Rows
CData source does not contain product-level data
DProduct dimension is missing from the Detail shelf or Rows shelf
Attempts:
2 left
💡 Hint

Think about what controls the granularity of marks in Tableau.

🎯 Scenario
expert
3:00remaining
Design a dashboard showing sales by customer and product with correct detail level

You need to build a dashboard that shows total sales by Customer and Product. The dashboard has two sheets: one lists customers with their total sales, and the other lists products with sales filtered by the selected customer. How should you set the detail level of marks and filters to ensure correct interaction?

AUse only SUM(Sales) without LOD; rely on quick filters for interaction
BUse FIXED LOD expressions for sales by customer and product; set dashboard filter action from customer sheet to product sheet
CUse EXCLUDE LOD expressions to remove product detail; no filter actions needed
DUse INCLUDE LOD expressions for sales; apply global filters on customer and product fields
Attempts:
2 left
💡 Hint

Consider how to fix aggregation levels and enable filtering between sheets.