Forum Discussion
Charli
2 years agoFrequent Visitor
Formula to agregate data
Hello all, I am working on PBI desktop I am trying to write a formula to agregate some numbers in a precise order. To define the order, I have added a column next to my data with the correct "order...
- 2 years agoHi Charli , please try this, I assumed you want to calculate running total based on the order, it will be great if you can provide more details or data.Calculation =VAR _MaxNum = MAX('PnL Conso (nature)'[Num order 2])VAR _RT =if('Calculation'[nbre lignes]=1,CALCULATE([In M€],FILTER(ALL('PnL Conso (nature)'),'PnL Conso (nature)'[Num order 2]<_MaxNum)))RETURN_RT
Walter_W2022
2 years agoResolver II
Hi Charli , please try this, I assumed you want to calculate running total based on the order, it will be great if you can provide more details or data.
Calculation =
VAR _MaxNum = MAX('PnL Conso (nature)'[Num order 2])
VAR _RT =
if(
'Calculation'[nbre lignes]=1,
CALCULATE(
[In M€],
FILTER(
ALL('PnL Conso (nature)'),
'PnL Conso (nature)'[Num order 2]<_MaxNum
)
)
)
RETURN
_RT