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

Variable Help

Hi Power BI experts

 

I am still learning Power BI. And I am confused about this variable concepts.  Could you pls help explain a little bit?  Thank you!

 

Example:

 

Sales[Order Position]=
1 VAR CurrentOrderNumber= Sales[Order Number]

2 Var Postion=
    Calculate (

               DISTINCTCOUNT(Sales[Order Number]),

               Sales[Order Number]<=CurrentOrderNumber  //My confusion is here.  Is this the same column?  Both refer to same Sales[OrderNumber] since CurrentOrderNumber=Sales[Order Number]? //
)
Return  Position

2 ACCEPTED SOLUTIONS
FreemanZ
Super User
Super User

once defined, the variable is stored as constant value.  so in expression like:

Sales[Order Number]<=CurrentOrderNumber

the left part is a real variable row by row, the right part is actually a constant defined before. 

View solution in original post

v-binbinyu-msft
Community Support
Community Support

Hi @RZAU ,

For understand VAR statement, you should understand the context concept in Power BI, because it is influence by context.

VAR: Stores the result of an expression as a named variable, which can then be passed as an argument to other measure expressions. Once resultant values have been calculated for a variable expression, those values do not change, even if the variable is referenced in another expression.

Please refer below notes for your dax formula:

Sales[Order Position] =
VAR CurrentOrderNumber = Sales[Order Number] //get current value for [Order Number] column according to the line context
VAR Postion =
    CALCULATE (
        DISTINCTCOUNT ( Sales[Order Number] ),
        Sales[Order Number] <= CurrentOrderNumber //use the CurrentOrderNumber to filter the [Order Number]column, now CurrentOrderNumber is just a value not a column
    )
RETURN
    Position

 For more details, you can read related document: VAR keyword (DAX) - DAX | Microsoft Learn , Variables in DAX - SQLBI

Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

View solution in original post

2 REPLIES 2
v-binbinyu-msft
Community Support
Community Support

Hi @RZAU ,

For understand VAR statement, you should understand the context concept in Power BI, because it is influence by context.

VAR: Stores the result of an expression as a named variable, which can then be passed as an argument to other measure expressions. Once resultant values have been calculated for a variable expression, those values do not change, even if the variable is referenced in another expression.

Please refer below notes for your dax formula:

Sales[Order Position] =
VAR CurrentOrderNumber = Sales[Order Number] //get current value for [Order Number] column according to the line context
VAR Postion =
    CALCULATE (
        DISTINCTCOUNT ( Sales[Order Number] ),
        Sales[Order Number] <= CurrentOrderNumber //use the CurrentOrderNumber to filter the [Order Number]column, now CurrentOrderNumber is just a value not a column
    )
RETURN
    Position

 For more details, you can read related document: VAR keyword (DAX) - DAX | Microsoft Learn , Variables in DAX - SQLBI

Best regards,
Community Support Team_Binbin Yu
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.

FreemanZ
Super User
Super User

once defined, the variable is stored as constant value.  so in expression like:

Sales[Order Number]<=CurrentOrderNumber

the left part is a real variable row by row, the right part is actually a constant defined before. 

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.