DAX HANDBOOK
6.5 Expanded tables

If you wish to follow along, you can find PBIX/Excel files at the bottom of the article. 

Authors

Krešimir Ledinski

Krešimir Ledinski

Microsoft certified expert in the field of Business Intelligence. His biggest passions are DAX, M, and data modeling.

Kristian Radoš

Kristian Radoš

Experienced data analyst. Advanced in SQL, PowerApps and M language.

When using whole tables as filter arguments to CALCULATE, you are using an expanded version of the model, which consists of the table used in the arguments, as well as all other tables in the data model that are linked to that table through a 1-* relationship.

We will explain this concept with a small dataset containing only a few columns.

Basics

We will use 4 different measures and observe their results in the visual:

TotalQTY = SUM(FactSales[OrderQuantity])
ALL_QTY_CustomerKey = CALCULATE([TotalQTY],ALL(DimCustomer[CustomerKey]))
ALL_QTY_BusinessType = CALCULATE([TotalQTY],ALL(DimCustomer[BusinessType]))
ALL_QTY_FactSales = CALCULATE([TotalQTY],ALL(FactSales))

First, we will observe the measure ALL_QTY_BusinessType. This measure uses CALCULATE remove filter argument ALL(DimCustomer[BusinessType]) to ignore the Business type on the visual. This is why there is always the same figure of 205788 shown for all 3 different types of business.

The measure ALL_QTY_FactSales holds more complexity since it operates on the expanded table. Even though we added a single ALL(FactSales) table filter as an argument to CALCULATE function, the measure is also ignoring filters coming from DimProduct and DimCustomer tables. We haven’t explicitly added those tables as filter arguments, but they are included in the ALL(FactSales) as expanded tables linked to the FactSales table through a 1-* many relationships.

The expanded table feature is always present but only gets utilized in specific situations, such as using tables as CALCULATE remove filter arguments.

The expanded table of FactSales one contains all columns from dimension tables connected to Fact table through 1-* relationship. This is why, when we ignored FactSales table using ALL(FactSales) argument in CALCULATE, we also ignored all columns coming from dimension tables. Expanded tables feature expands to every other table that has a 1-* relationship with an already existing one, often known as snowflake term.

Key Columns Explained

If we observe the ALL_QTY_CustomerKey in the visual above, we can see that it returns the same values as the TotalQTY measure. We might think that because we ignored a key column as an argument to CALCULATE, we will activate the expanded table feature, but that is not the case.

ALL(DimCustomer[CustomerKey]) will ignore the key column coming from the FactSales table, but will not propagate to the DimCustomer dimension or ignore DimCustomer[CustomerKey] column, even though it is a key pair on the 1 side of the relationship!

Only the complete table reference will expand filter to all dimensions on the 1 side of the relationship.

Materials

We wish to create the best possible content!

If you are a novice looking for a better explanation of any element of the topic, feel free to comment on the part you didn't quite understand!

If you are an expert in DAX and believe certain topic lacks important internals, your comments are more than welcomed!

COMMENTS

Subscribe
Notify of
guest
0 Comments
Inline Feedbacks
View all comments

OUR SERVICES

Prefer live training or consultations?

Table of Content

Table of Content

GET LATEST BI NEWS TO YOUR INBOX

Receive the latest updates on all business analyst news across all platforms.

By subscribing you are agreeing to our Privacy Policy.

Related blog posts

Divorces in Slovenia – Stable in Numbers, Shifting in Nature

Number of Divorces Data from the Statistical Office of the Republic of Slovenia shows that the number of divorces in Slovenia is declining. In each year from 2022 to 2024, around 2,200 divorces were recorded annually. Excluding the COVID year 2020, divorce numbers were last this low in 2000. Given...

Read more

Marriages in Slovenia – Declining and Shifting

The number and rate of marriages in Slovenia, as in the wider region, are in decline. Marriage has shifted from a near-universal early-life milestone to a selective mid-life choice. Marriage Trends According to data from Republic of Slovenia Statistical office covering period from 1988 to 2024, the highest number of...

Read more

Who Visits Slovenia and When

Which foreign tourists visit Slovenia the most, and when do they come? Experimental data from the Statistical Office of the Republic of Slovenia, based on foreign mobile users roaming on Slovenian networks, offers a detailed view. Top Visitors According to the data, tourists from Austria (13.3%), Germany (13.1%), and the...

Read more

Where Slovenians Travel and When

Where do Slovenians like to travel, and when do they go? Experimental data from the Statistical Office of the Republic of Slovenia, based on mobile users roaming in foreign networks, provides clear answers. Top Destinations There are no surprises at the top. Croatia remains the number one destination for Slovenians....

Read more
0
Would love your thoughts, please comment.x
()
x
Scroll to Top