Join us at FabCon Atlanta from March 16 - 20, 2026, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.
Register now!Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.
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 )
Solved! Go to Solution.
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.
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
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.
Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!
Check out the October 2025 Power BI update to learn about new features.