Challenge - 5 Problems
EXCLUDE LOD Master
Get all challenges correct to earn this badge!
Test your skills under time pressure!
❓ dax_lod_result
intermediate2:00remaining
Calculate average sales excluding Region detail
Given a dataset with Sales and Region, which EXCLUDE LOD expression calculates the average sales ignoring the Region level of detail?
Tableau
{EXCLUDE [Region] : AVG([Sales])}Attempts:
2 left
💡 Hint
EXCLUDE removes specified dimensions from the view level of detail.
✗ Incorrect
The EXCLUDE LOD expression removes the Region dimension from the calculation, averaging sales across all regions.
❓ visualization
intermediate2:00remaining
Visualize total sales excluding Category
You want to create a bar chart showing total sales by Sub-Category but excluding the Category level in the calculation. Which Tableau LOD expression should you use in your calculated field?
Attempts:
2 left
💡 Hint
EXCLUDE removes the specified dimension from the calculation.
✗ Incorrect
Using EXCLUDE [Category] removes the Category dimension, so the sum of sales is calculated ignoring Category but respecting Sub-Category.
🧠 Conceptual
advanced2:30remaining
Understanding EXCLUDE LOD behavior with multiple dimensions
If your view includes dimensions Region, Category, and Sub-Category, what does the expression
{EXCLUDE [Category], [Sub-Category] : SUM([Profit])} compute?Attempts:
2 left
💡 Hint
EXCLUDE removes specified dimensions from the view's level of detail.
✗ Incorrect
EXCLUDE [Category], [Sub-Category] removes those two dimensions, so the aggregation happens at the remaining dimension(s), here Region.
🔧 Formula Fix
advanced2:00remaining
Identify the error in EXCLUDE LOD expression
Which option contains a syntax error in the EXCLUDE LOD expression?
Attempts:
2 left
💡 Hint
Dimension names must be enclosed in square brackets.
✗ Incorrect
Option B misses square brackets around Region, causing a syntax error.
🎯 Scenario
expert3:00remaining
Use EXCLUDE LOD to compare sales with and without Category detail
You have a sales dataset with dimensions Region, Category, and Sub-Category. You want to create a calculated field that shows the difference between total sales at the Region level and total sales at the Region and Category level. Which expression correctly calculates this difference?
Attempts:
2 left
💡 Hint
FIXED LOD expressions fix the level of detail regardless of view, EXCLUDE removes dimensions.
✗ Incorrect
The difference between total sales at Region level and at Region plus Category level is calculated by subtracting the FIXED Region+Category sum from the FIXED Region sum.