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

Total value Measure

Good morning,

 

I need to calculate some values based on the total value of a measure and the final value is not getting me right. I have seen that it is a problem that happens to a lot of people but I am not able to come up with a solution. Can you help me, please?

 

wrong.png

 

The sum is 8820 and I need 5796.

 

Formula:

Activity data = [Stock Final Last Month] + [Entradas] - [Stock Final]

 

Is based on other measures:

 

Entradas =
CALCULATE(
sum(Movimentos[Quant.]),
FILTER(TipoMov,TipoMov[Descrição Movimento]="Recepção compra"),
FILTER(Cod_Artigo,Cod_Artigo[Cod_Artigo]="60700400")
)
 
Stock Final =
CALCULATE(
sum(StockFinal[Stock Final]),
PREVIOUSMONTH(DATA[Date]),
FILTER(Cod_Artigo,Cod_Artigo[Cod_Artigo]="60700400")
)
 
Stock Final Last Month =
CALCULATE(
sum(StockFinal[Stock Final]),
DATEADD(DATA[Date],-2,MONTH),
FILTER(Cod_Artigo,Cod_Artigo[Cod_Artigo]="60700400")
)

model.JPG

 

Thanks
1 ACCEPTED SOLUTION
amitchandak
Super User
Super User

@descud , Try a measure like

Activity data = sumx(Values(Date[Month]), [Stock Final Last Month] + [Entradas] - [Stock Final])

 

or

 

Activity data = sumx(Values(Date[Month Year]), [Stock Final Last Month] + [Entradas] - [Stock Final])

View solution in original post

2 REPLIES 2
descud
Frequent Visitor

Hello again,
 
My PowerBI works but is very slow. So I decided to improve DAX. I apply the same formula but it doesn't work, why?
 
 
 
New =
Var CodArtigo = FILTER(Cod_Artigo,Cod_Artigo[Cod_Artigo]="60700410")

 

Var AceGarrEnt =
CALCULATE(
sum(Movimentos[Quant.]),
FILTER(TipoMov,TipoMov[Descrição Movimento]="Recepção compra"),CodArtigo)

 

Var AceGarrStockFinal =
CALCULATE(
sum(StockFinal[Stock Final]),PREVIOUSMONTH(DATA[Date]),CodArtigo)
 
var AceGarrSFinalLMonth =
CALCULATE(
sum(StockFinal[Stock Final]),
DATEADD(DATA[Date],-2,MONTH),CodArtigo)

 

var AceGarrSFinalLMonth2 =
IF(AceGarrStockFinal=BLANK(),BLANK(),AceGarrSFinalLMonth)

 

var AceGarrDAct = SUMX(VALUES(DATA[Month]), AceGarrSFinalLMonth2 + AceGarrEnt - AceGarrStockFinal)

 

return

 

AceGarrDAct
 
Thanks
amitchandak
Super User
Super User

@descud , Try a measure like

Activity data = sumx(Values(Date[Month]), [Stock Final Last Month] + [Entradas] - [Stock Final])

 

or

 

Activity data = sumx(Values(Date[Month Year]), [Stock Final Last Month] + [Entradas] - [Stock Final])

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.

Top Solution Authors