LOD Expressions in Tableau: How Does it Work? [Guide For Beginners]
By Rohit Sharma
Updated on Jul 03, 2023 | 9 min read | 8.4k views
Share:
For working professionals
For fresh graduates
More
By Rohit Sharma
Updated on Jul 03, 2023 | 9 min read | 8.4k views
Share:
Table of Contents
Tableau is one of the most popular and extensively used data visualization tools in the world. The tool’s primary aim is to enable you to see and understand the connotations of data. The features of Tableau are designed to transform data insights into meaningful and actionable business insights. Learn more about tableau data visualization.
Since Tableau focuses on data calculations, the better you can express ideas in a calculation language, the better meaning you will be able to generate from the data at hand. This is precisely why Tableau Level of Detail (LOD) expressions was introduced. To learn more about Tableau and other data related tools, check out our data science online certifications from top universities.
The Tableau Level of Detail (LOD) expressions was introduced in Tableau 9.0. These LOD expressions allow you to express powerful concepts by using simple statements.
Tableau LOD expressions are powerful tools that you can use to find answers to questions that involve multiple levels of granularity in a single visualization. Using LOD expressions, you can compute aggregations that are not at the level of detail of visualization. You can incorporate the aggregation values within the data visualizations in arbitrary ways. Furthermore, LOD expressions give you more control to determine the level of granularity in your computations.
Now, without further ado, let’s get into a detailed discussion on Tableau LOD expressions.
In Tableau, LOD expressions adhere to a particular syntax that enables users to specify the level of detail for calculations. The LOD keyword precedes the aggregating function and the dimension(s) to be taken into account in the syntax. For example:
{FIXED [Dimension]: Aggregation}
{INCLUDE [Dimension]: Aggregation}
{EXCLUDE [Dimension]: Aggregation}
Tableau’s set LOD expressions let us specify a set level of detail without taking into account the level of granularity of the visualisations. This indicates that regardless of the dimensions contained in the view, the calculation will remain constant. The “FIXED” keyword is used to indicate Fixed LOD in Tableau. For instance:
{FIXED [Region]: SUM([Sales])}
Regardless of any additional dimensions or filters used, this formula will calculate the sum of sales for each region.
Tableau’s INCLUDE LOD expressions let us specify extra dimensions to include in the calculation. The keyword “INCLUDE” is used to identify these expressions. For example:
{INCLUDE [Region], [Product Category]: AVG([Profit])}\
Regardless of any additional dimensions or filters, this phrase will calculate the average profit for each location and product category.
Tableau EXCLUDE LOD expressions let users take particular dimensions out of the calculation. The “EXCLUDE” keyword designates certain expressions. Here’s an example:
{EXCLUDE [Product Sub-Category]: MAX([Sales])}
The maximum sales, omitting the product subcategory dimension, will be determined by this equation.
LOD expressions offer a more potent and adaptable mechanism to do computations at many levels of detail than Tableau’s flexibility in generating tables to display data. Users can go around the constraints of conventional tables and gain deeper insights into their data by utilising LOD expressions.
The top five Tableau LOD expressions are:
This expression can compute values using specified dimensions without reference to any other dimensions present in the view. This LOD expression does not consider any filter in the view apart from context filters, data source filters, and extract filters.
{ FIXED [Region] : SUM([Sales]) }
This expression computes values using specified dimensions along with the dimensions that are in the view. This LOD expression is best suited for situations where you wish to include a dimension that is not in the view.
{ INCLUDE [Customer Name] : SUM([Sales]) }
These expressions are designed to remove dimensions from an expression. Essentially, they subtract dimensions from the level of detail of the view.
{EXCLUDE [Region]: SUM([Sales])}
Read: Tableau Developer Salary in India
Usually, in Tableau, the expressions that reference the unaggregated data source columns are computed for each row in the underlying table. Thus, the dimensionality of the expression here is row level. Below is an example of a row level expression:
[Sales] / [Profit]
This expression will evaluate each row of the database, wherein the Sales value in each row will be divided by the Profit value in that particular row to produce a new column containing the profit ratio.
You can save the computation of this definition with the name [ProfitRatio]. When you drag the name from the data pane to a shelf, Tableau will automatically aggregate the calculated field for the view:
SUM[ProfitRatio]
In this LOD, the expressions referencing the aggregated data source columns are computed at the dimensionality defined by the dimensions in the view. Thus, the dimensionality of the expression is view level. Here’s an example of a view-level expression is:
SUM(Sales) / SUM(Profit)
You can drag this computation from the data pane to a shelf or you can also type it directly on a shelf as an ad-hoc calculation, and Tableau will enclose it in an AGG function like so:
AGG(SUM(Sales) / SUM(Profit))
This is called as Aggregate Calculation (ACG).
Also read: Tableau Architecture
Apart from the row and view level of detail expressions, you can also define a Tableau LOD expression at the table level without using any scoping keywords. Here’s a simple example of Table-Scoped LOD. If you write the following expression {MIN([Order Date])}, it will return the minimum (earliest) order date for the entire table.
Table-Scoped LOD is the equivalent of a FIXED LOD having no dimension declaration. So, the expression will be as follows:
{FIXED : MIN([Order Date])}
Here’s how you can create Tableau LOD expressions in three simple steps!.
Step 1: Configure the visualization
After completing these four steps, you will see a bar chart showing the sum of sales for each region, like so:
Step 2: Create the LOD expression
Now that you’ve seen the sum of sales per region, you can create a LOD expression to see the average sales per customer for each region. To do so, you can use a LOD expression in the following way:
– Name the calculation “Sales Per Customer.”
– Enter the following LOD expression: { INCLUDE [Customer Name] : SUM([Sales]) }
Step 3: Use the newly created LOD expression in the visualization
You can now see both the sum of all sales and the average sales per customer for each region. For instance, in the bar chart, it is visible that in the Central region, the sales totaled approximately US$ 500,000, with an average sale for each customer being approximately US$ 800.
upGrad’s Exclusive Data Science Webinar for you –
Transformation & Opportunities in Analytics & Insights
All Tableau LOD expressions have the following limitations and constraints:
If you found this interesting, feel free to experiment with Tableau LOD expressions to know their unique quirks and advantages!
Join the Executive PG Programme in Data Science course at upGrad today and be part of the growing developers. Get in touch with us for more information and one of our executives will take you through the process.
Get Free Consultation
By submitting, I accept the T&C and
Privacy Policy
Start Your Career in Data Science Today
Top Resources