0
0
Tableaubi_tool~20 mins

FIXED LOD expression in Tableau - Practice Problems & Coding Challenges

Choose your learning style9 modes available
Challenge - 5 Problems
🎖️
LOD Mastery Badge
Get all challenges correct to earn this badge!
Test your skills under time pressure!
dax_lod_result
intermediate
2:00remaining
Calculate Total Sales per Region Using FIXED LOD
Given a dataset with sales data including fields Region and Sales, which FIXED LOD expression correctly calculates the total sales per region regardless of filters on other dimensions?
A{INCLUDE [Region] : SUM([Sales])}
B{EXCLUDE [Region] : SUM([Sales])}
CSUM([Sales])
D{FIXED [Region] : SUM([Sales])}
Attempts:
2 left
💡 Hint
Remember, FIXED LOD expressions ignore filters except context filters and fix the calculation at the specified dimension.
visualization
intermediate
2:00remaining
Visualizing Average Sales per Customer with FIXED LOD
You want to create a bar chart showing the average sales per customer across all regions, ignoring any filters on region. Which FIXED LOD expression should you use to create the calculated field for average sales per customer?
A{FIXED [Region] : AVG([Sales])}
B{FIXED [Customer ID] : AVG([Sales])}
C{INCLUDE [Customer ID] : AVG([Sales])}
DAVG([Sales])
Attempts:
2 left
💡 Hint
You want to fix the calculation at the customer level ignoring region filters.
🔧 Formula Fix
advanced
2:00remaining
Identify the Error in FIXED LOD Expression
Which option contains a syntax error in the FIXED LOD expression?
A{FIXED [Category], [Region] : SUM([Profit])}
B{FIXED [Category] : SUM([Profit])}
C{FIXED [Category] [Region] : SUM([Profit])}
D{FIXED [Category], [Region] : AVG([Profit])}
Attempts:
2 left
💡 Hint
Check the syntax for multiple dimensions in FIXED LOD expressions.
🧠 Conceptual
advanced
2:00remaining
Understanding Filter Behavior in FIXED LOD
Which statement correctly describes how FIXED LOD expressions behave with filters in Tableau?
AFIXED LOD expressions ignore dimension filters but respect context filters.
BFIXED LOD expressions ignore all filters including context filters.
CFIXED LOD expressions respect all filters applied in the view.
DFIXED LOD expressions ignore only measure filters.
Attempts:
2 left
💡 Hint
Think about which filters affect FIXED LOD calculations.
🎯 Scenario
expert
3:00remaining
Calculate Customer Count per Segment Ignoring Product Filters
You have a dataset with customers, segments, and products. You want to create a calculated field that shows the total number of unique customers per segment, ignoring any filters on products but respecting filters on segments. Which FIXED LOD expression achieves this?
A{FIXED [Segment] : COUNTD([Customer ID])}
B{INCLUDE [Segment] : COUNTD([Customer ID])}
C{FIXED [Segment], [Product] : COUNTD([Customer ID])}
DCOUNTD([Customer ID])
Attempts:
2 left
💡 Hint
You want to fix calculation at segment level ignoring product filters.