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

Score big with last-minute savings on the final tickets to FabCon Vienna. Secure your discount

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
August Power BI Update Carousel

Power BI Monthly Update - August 2025

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

August 2025 community update carousel

Fabric Community Update - August 2025

Find out what's new and trending in the Fabric community.