DAX Internal Date Hierarchy Behavior

90 views Asked by At

Hoping someone can explain the difference in the behavior of ALL between these 2 cases:

case1: referencing the entire Date table in ALL - gives the correct result

enter image description here

case2: specifically referencing the date column from the Date table in ALL - gives the wrong result, why?

enter image description here

Date table just looks like this

enter image description here

1

There are 1 answers

1
mkRabbani On

According to microsoft document: ALL(table) - Removes all filters from the specified table.

Where as ALL(Column) variant is useful when you want to remove the context filters for one or more specific columns and to keep all other context filters. All column arguments must come from the same table

For more details, please visit - https://learn.microsoft.com/en-us/dax/all-function-dax#:~:text=ALL()%20can%20only%20be,not%20to%20return%20a%20table.&text=Removes%20all%20filters%20from%20the%20specified%20table.&text=All%20column%20arguments%20must%20come,keep%20all%20other%20context%20filters.