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
Steve_L
Frequent Visitor

var different result

Hi 

 

I have a problem of using VAR in DAX recently that I try to use VAR to make my formula more readable, but finally it returns totally different result, is there anyone can help me with this? Thanks a lot!!

 

Original Code, this code works well for me that ranks the products according to the quantity sold in current month:

=
RANKX (
    ALL ( 'Sales'[Product Name] ),
    CALCULATE (
        SUM ( 'Sales'[Value] ),
        'Sales'[Value Type] = "QTY",
        LASTDATE ( 'Sales'[Month/Year] )
    ),
    ,
    DESC,
    DENSE
)

 

Modified Code, this code reutrns 1 for all of my products:

=VAR QTY1M =
 CALCULATE (
        SUM ( 'Sales'[Value] ),
        'Sales'[Value Type] = "QTY",
        LASTDATE ( 'Sales'[Month/Year] ))
return

RANKX (
    ALL ( 'Sales'[Product Name] ),
   QTY1M,
    ,
    DESC,
    DENSE
)

 

1 ACCEPTED SOLUTION
erik_tarnvik
Solution Specialist
Solution Specialist

In the first example CALCULATE is evaluated within the iteration context of the RANKX function. In the second example, the CALCULATE function is evaluated first (within whatever context you place the whole expression) and the result QTY1M is used within the RANKX function. 

View solution in original post

2 REPLIES 2
v-jiascu-msft
Employee
Employee

Hi @Steve_L,

 

You can create a new measure instead of a var formula. It looks like this:

QTY1M =
 CALCULATE (
        SUM ( 'Sales'[Value] ),
        'Sales'[Value Type] = "QTY",
        LASTDATE ( 'Sales'[Month/Year] ))
FinalMeasure =
RANKX ( ALL ( 'Sales'[Product Name] ), [QTY1M], , DESC, DENSE )

 

Best Regards!

Dale

Community Support Team _ Dale
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
erik_tarnvik
Solution Specialist
Solution Specialist

In the first example CALCULATE is evaluated within the iteration context of the RANKX function. In the second example, the CALCULATE function is evaluated first (within whatever context you place the whole expression) and the result QTY1M is used within the RANKX function. 

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.