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

Calling all Data Engineers! Fabric Data Engineer (Exam DP-700) live sessions are back! Starting October 16th. Sign up.

Reply
Velvetine27
Helper I
Helper I

Total value in DAX is not matching with row total

Hi,

 

I wrote up few DAX queries to get total stock quantity. First query is this :

 

SumRunningQuantity =
VAR lowest_date  =  CALCULATE(MIN(TY[ROWNUM2]),GROUPBY(TY, TY[Plant]))
RETURN
  CALCULATE(SUMX(TY,TY[RunningQuantity]),FILTER(TY, TY[ROWNUM2]=lowest_date))
 
Second query is :
TotalRunningQuantity =
SUMX(
    SUMMARIZE(TY, TY[Material],
    "Lowest Row",[SumRunningQuantity])
    ,[SumRunningQuantity])
 
ROWNUM2 is how I put the dates in order because I only want to capture the quantity at the latest date depends on date slicer. 
 
Velvetine27_0-1668582540441.png

 

The correct total should be 28,692,069.52. Appreciate if someone can help me on this.

 

Thanks !

 
1 ACCEPTED SOLUTION
Anonymous
Not applicable

Hi @Velvetine27 ,

 

Create a new measure by using ISINSCOPE() or ISFILTERED() function.

ISINSCOPE function (DAX) - DAX | Microsoft Learn

ISFILTERED function (DAX) - DAX | Microsoft Learn

Measure = IF(ISINSCOPE([Plant]),[TotalRunningQuantity],SUMX(ALLSELECTED(yourtable),[TotalRunningQuantity]))

 

View solution in original post

2 REPLIES 2
Anonymous
Not applicable

Hi @Velvetine27 ,

 

Create a new measure by using ISINSCOPE() or ISFILTERED() function.

ISINSCOPE function (DAX) - DAX | Microsoft Learn

ISFILTERED function (DAX) - DAX | Microsoft Learn

Measure = IF(ISINSCOPE([Plant]),[TotalRunningQuantity],SUMX(ALLSELECTED(yourtable),[TotalRunningQuantity]))

 

Anonymous
Not applicable

Helpful resources

Announcements
FabCon Global Hackathon Carousel

FabCon Global Hackathon

Join the Fabric FabCon Global Hackathon—running virtually through Nov 3. Open to all skill levels. $10,000 in prizes!

September Power BI Update Carousel

Power BI Monthly Update - September 2025

Check out the September 2025 Power BI update to learn about new features.

FabCon Atlanta 2026 carousel

FabCon Atlanta 2026

Join us at FabCon Atlanta, March 16-20, for the ultimate Fabric, Power BI, AI and SQL community-led event. Save $200 with code FABCOMM.