Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 

Register now to learn Fabric in free live sessions led by the best Microsoft experts. From Apr 16 to May 9, in English and Spanish.

Reply
ted_kim
Helper I
Helper I

I don't understand the restrictions of the CALCULATE (DAX).

Hello, community members.

 

I have been studying DAX function. ( URL : https://msdn.microsoft.com/query-bi/dax/calculate-function-dax)

There was something over an hour I couldn't understand.

 

There's nothing wrong right now, but I'm really curious about what that means.

 

-----------------------------------------------------------------------------------------------------------------------------------------

The following restrictions apply to Boolean expressions that are used as arguments:

  • The expression cannot reference a measure.

  • The expression cannot use a nested CALCULATE function.

  • The expression cannot use any function that scans a table or returns a table, including aggregation functions.

-------------------------------------------------------------------------------------------------------------------------------------------

 

Could anyone please give me examples or explanations?

1 ACCEPTED SOLUTION
Stachu
Community Champion
Community Champion

this reference is much more extensive

https://dax.guide/calculate/

https://www.sqlbi.com/articles/context-transition-and-filters-in-calculate/

 

regarding the boolean expression specifically (this is where the limitations are valid) e.g. check if color is red

CORRECT
CALCULATE(SUM(Table[Value]),Table[Color] = "Red")
CALCULATE(SUM(Table[Value]),LOWER(Table[Color]) = "red")
NOT CORRECT
Flag1 = IF(Table[Color] = "Red", TRUE,FALSE)
CALCULATE(SUM(Table[Value]),[Flag])

nested CALCUALTE is quite self explanatory, function that scans a table - my guess would be e.g. SUMX, FILTER (though I'm not sure about them)

please remember that instead of a boolean expression you can also pass a list of values - e.g. result of FILTER, DATESYTD, etc.

 



Did I answer your question? Mark my post as a solution!
Thank you for the kudos 🙂

View solution in original post

1 REPLY 1
Stachu
Community Champion
Community Champion

this reference is much more extensive

https://dax.guide/calculate/

https://www.sqlbi.com/articles/context-transition-and-filters-in-calculate/

 

regarding the boolean expression specifically (this is where the limitations are valid) e.g. check if color is red

CORRECT
CALCULATE(SUM(Table[Value]),Table[Color] = "Red")
CALCULATE(SUM(Table[Value]),LOWER(Table[Color]) = "red")
NOT CORRECT
Flag1 = IF(Table[Color] = "Red", TRUE,FALSE)
CALCULATE(SUM(Table[Value]),[Flag])

nested CALCUALTE is quite self explanatory, function that scans a table - my guess would be e.g. SUMX, FILTER (though I'm not sure about them)

please remember that instead of a boolean expression you can also pass a list of values - e.g. result of FILTER, DATESYTD, etc.

 



Did I answer your question? Mark my post as a solution!
Thank you for the kudos 🙂

Helpful resources

Announcements
Microsoft Fabric Learn Together

Microsoft Fabric Learn Together

Covering the world! 9:00-10:30 AM Sydney, 4:00-5:30 PM CET (Paris/Berlin), 7:00-8:30 PM Mexico City

PBI_APRIL_CAROUSEL1

Power BI Monthly Update - April 2024

Check out the April 2024 Power BI update to learn about new features.

April Fabric Community Update

Fabric Community Update - April 2024

Find out what's new and trending in the Fabric Community.