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
YukiK
Impactful Individual
Impactful Individual

Why using a measure as a variable in another measure not working

I've encountered cases where I have a measure (Measure A) that I want to use multiple times in another measure involving CALCULATE (Measure B).

 

It works fine without using variables, but it feels redundant to call Measure A mutiple times in Measure B so I attempted to store Measure A as a variable in Measure B, appearently that breaks the filter context or something and Measure B no longer work.

 

Can someone explain what's going on in this senario? I'd like to understand why using a measure in another measure as a variable is not working as expected.

 

Working:

Canada Sum of Sales =
CALCULATE( [Sum of Sales], financials[Country] = "Canada" )
 
Not working:
Canada Sum of Sales - not working =
VAR _sales = [Sum of Sales]
VAR _result = CALCULATE( _sales, financials[Country] = "Canada" )
RETURN
_result
 
Hope what I mentioned made sense. You can download the file here: https://github.com/StuffbyYuki/PBI-Community-Forums/blob/main/Calculate%20with%20Variables.pbix
 
Thansk in advance!
1 ACCEPTED SOLUTION
CNENFRNL
Community Champion
Community Champion

What's done is done; once a variable is calculated for the first time, its value persists regardless of any other calculation context.


Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

View solution in original post

2 REPLIES 2
CNENFRNL
Community Champion
Community Champion

What's done is done; once a variable is calculated for the first time, its value persists regardless of any other calculation context.


Thanks to the great efforts by MS engineers to simplify syntax of DAX! Most beginners are SUCCESSFULLY MISLED to think that they could easily master DAX; but it turns out that the intricacy of the most frequently used RANKX() is still way beyond their comprehension!

DAX is simple, but NOT EASY!

YukiK
Impactful Individual
Impactful Individual

Makes sense. Good to know! Thanks.

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.