Forum Discussion

Steve_L's avatar
Steve_L
Frequent Visitor
8 years ago
Solved

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
)

 

  • 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. 

2 Replies

  • erik_tarnvik's avatar
    erik_tarnvik
    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. 

  • v-jiascu-msft's avatar
    v-jiascu-msft
    Microsoft 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