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

Advanced Excel training for client Hilding Anders

We have started our autumn training sessions! We are starting with a dear client from Međimurje, Hilding Anders, where we’ll deliver an advanced Excel training for the logistics and production departments. The training will last a total of 16 hours, split into 2-hour sessions. Advanced Excel is useful for all...

Read more

Napredna Excel edukacija za klijenta Hilding Anders

Krenuli smo s jesenskim edukacijama! Edukacije započinjemo kod dragog klijenta iz Međimurja, Hilding Anders, gdje ćemo za odjele logistike i proizvodnje proći kroz naprednu Excel edukaciju. Edukacija će trajati sveukupno 16 sati u terminima po 2 sata. Napredni Excel koristan je svim polaznicima koji svakodnevno rade sa velikom količinom podataka,...

Read more

Business improvement with the help of Power BI

How did we improve our client’s business with the help of Power BI? A global brand with a branch in the Adriatic region had several problems: • Uncollected receivables• Sales without margin (price lists in disarray)• Hidden losses• Unprofitable product lines and stockpiling• Lack of focus in sales and procurement,...

Read more

Unaprijeđenje poslovanja pomoću Power BI-ja

Kako smo uz pomoć Power BI-ja unaprijedili poslovanje našeg klijenta? Globalni brand s podružnicom u Adriatic regiji je imao više problema: Nenaplaćena potraživanja Prodaja bez marže (cjenici u rasulu) Skriveni gubici Neprofitne linije proizvoda i gomilanje zaliha Nije bilo fokusa u prodaji i nabavi već se sve obavljalo stihijski Zašto...

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