0
0
Tableaubi_tool~5 mins

Common LOD use cases (customer first purchase, cohorts) in Tableau - Cheat Sheet & Quick Revision

Choose your learning style9 modes available
Recall & Review
beginner
What does LOD stand for in Tableau?
LOD stands for Level of Detail. It lets you control the granularity of your calculations independently from the view.
Click to reveal answer
beginner
How can you find a customer's first purchase date using LOD expressions?
Use a FIXED LOD expression like { FIXED [Customer ID] : MIN([Order Date]) } to get the earliest purchase date per customer.
Click to reveal answer
beginner
What is a cohort in business intelligence?
A cohort is a group of customers who share a common characteristic, often grouped by their first purchase date or signup period.
Click to reveal answer
intermediate
Why use FIXED LOD expressions for cohort analysis?
FIXED LOD expressions let you calculate metrics like first purchase date per customer regardless of the current view filters or dimensions.
Click to reveal answer
intermediate
Give an example of a cohort calculation using LOD in Tableau.
You can create a cohort by fixing the first purchase month: { FIXED [Customer ID] : DATETRUNC('month', MIN([Order Date])) } to group customers by their first purchase month.
Click to reveal answer
What does the FIXED keyword do in a Tableau LOD expression?
AFilters data before aggregation
BChanges the data source connection
CAggregates data only for visible marks
DCalculates the value at a specified dimension level regardless of the view
Which LOD expression finds the first purchase date per customer?
A{ INCLUDE [Customer ID] : MIN([Order Date]) }
B{ FIXED [Customer ID] : MIN([Order Date]) }
C{ FIXED [Customer ID] : MAX([Order Date]) }
D{ EXCLUDE [Customer ID] : MIN([Order Date]) }
What is a cohort analysis typically used for?
AGrouping customers by their first purchase or signup date
BCalculating total sales per product
CFiltering out inactive customers
DChanging data source connections
Which LOD type ignores the view filters except context filters?
AFIXED
BEXCLUDE
CINCLUDE
DFILTER
How can you group customers by their first purchase month in Tableau?
AUse DATETRUNC('month', [Order Date]) directly
BUse { INCLUDE [Customer ID] : MAX([Order Date]) }
CUse { FIXED [Customer ID] : DATETRUNC('month', MIN([Order Date])) }
DUse { EXCLUDE [Customer ID] : MIN([Order Date]) }
Explain how you would use LOD expressions to find each customer's first purchase date in Tableau.
Think about fixing the calculation at the customer level and finding the earliest date.
You got /4 concepts.
    Describe what a cohort is and how LOD expressions help analyze cohorts in Tableau.
    Focus on grouping customers by first purchase and how LOD controls granularity.
    You got /4 concepts.