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

Be one of the first to start using Fabric Databases. View on-demand sessions with database experts and the Microsoft product team to learn just how easy it is to get started. Watch now

Reply
hideakisuzuki01
Helper II
Helper II

Question on variable on measure

Hi,

I am trying to calculate sales amount excluding certain regions, and I have two measures, which seem almost identical to me but somehow one is working but the other one is not.  

 

Can someone please explain why one works but the other one gives wrong result  ?

 

Version 1(Working version): 

 

SalesWithoutNA =
VAR Table1 = FILTER('FactSales',RELATED('DimCountries'[Region])<>"North America")
VAR Result = CALCULATE(SUM('FactSales'[Sales]),Table1)
RETURN Result

 

 

Version 2 (This version gives me wrong results):

 

M_SalesWithoutNA =
VAR Expression1 = SUM('FactSales'[Sales])
VAR Table1 = FILTER('FactSales',RELATED('DimCountries'[Region])<>"North America")
VAR Result = CALCULATE(Expression1,Table1)
RETURN Result

 

I cannot figure out why they dont give me the same results.

 

1 ACCEPTED SOLUTION
tackytechtom
Super User
Super User

Hi @hideakisuzuki01 ,

 

I think this is due to the fact that variables are calculated first and the calculated value becomes a constant and can not be changed with filters anymore. 

 

So in your case, you first calculate the sum of all sales and store that result in the variable Expression1. Afterwards, you apply the filter from Table1 ("North America") to that result. However, applying a filter on a constant does not change the value of your result. So to sum it up, your filter does not kick in.

 

 

 

Does this help? 🙂

 

/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/



Did I answer your question➡️ Please, mark my post as a solution ✔️

Also happily accepting Kudos 🙂

Feel free to connect with me on LinkedIn! linkedIn

#proudtobeasuperuser 

View solution in original post

2 REPLIES 2
hideakisuzuki01
Helper II
Helper II

Yes, that does make sense, thanks Tom !

tackytechtom
Super User
Super User

Hi @hideakisuzuki01 ,

 

I think this is due to the fact that variables are calculated first and the calculated value becomes a constant and can not be changed with filters anymore. 

 

So in your case, you first calculate the sum of all sales and store that result in the variable Expression1. Afterwards, you apply the filter from Table1 ("North America") to that result. However, applying a filter on a constant does not change the value of your result. So to sum it up, your filter does not kick in.

 

 

 

Does this help? 🙂

 

/Tom
https://www.tackytech.blog/
https://www.instagram.com/tackytechtom/



Did I answer your question➡️ Please, mark my post as a solution ✔️

Also happily accepting Kudos 🙂

Feel free to connect with me on LinkedIn! linkedIn

#proudtobeasuperuser 

Helpful resources

Announcements
Las Vegas 2025

Join us at the Microsoft Fabric Community Conference

March 31 - April 2, 2025, in Las Vegas, Nevada. Use code MSCUST for a $150 discount!

Dec Fabric Community Survey

We want your feedback!

Your insights matter. That’s why we created a quick survey to learn about your experience finding answers to technical questions.

ArunFabCon

Microsoft Fabric Community Conference 2025

Arun Ulag shares exciting details about the Microsoft Fabric Conference 2025, which will be held in Las Vegas, NV.

December 2024

A Year in Review - December 2024

Find out what content was popular in the Fabric community during 2024.