Forum Discussion
Anonymous
4 years agoNot applicable
Sum Cummulative
Hello, i want to do a cummulative sum on the measure % diff portefeuille, but it dosent work for some reason. Here my formulas. I start by calculating the sum of my gain/lost with the mesure Montan...
- 4 years ago
Anonymous , Try a measure like
Calculate(sumx('Calendrier W/O'[Date]),[% diff portefeuille]),
FILTER (
ALLSELECTED( ( 'Calendrier W/O' )),
'Calendrier W/O'[Date] <= MAX ( ( 'Calendrier W/O'[Date] ) )
)
)
amitchandak
Super User
4 years agoAnonymous , Try a measure like
Calculate(sumx('Calendrier W/O'[Date]),[% diff portefeuille]),
FILTER (
ALLSELECTED( ( 'Calendrier W/O' )),
'Calendrier W/O'[Date] <= MAX ( ( 'Calendrier W/O'[Date] ) )
)
)
- Anonymous4 years agoNot applicable
Thanks for the help !!