Forum Discussion
Anonymous
6 years agoNot applicable
Acumulated function ignoring slicer
I´m having dificult with a measure , I have a Slicer that filters months , another that filters year, but I want a measure to calculate the sum of the year to that month selected. the problem is that...
v-diye-msft
6 years agoCommunity Support
Hi Anonymous
Try below measure:
YTDPlan = var a = IF(HASONEVALUE('Base Act W&D _ SAP'[Year]),SELECTEDVALUE('Base Act W&D _ SAP'[Year]),BLANK())
Return
CALCULATE(SUM('Base Act W&D _ SAP'[Plano 2020.Value]),FILTER(ALL('Base Act W&D _ SAP'),[Data max Filtro]>=MONTH('Base Act W&D _ SAP'[Date])&&YEAR('Base Act W&D _ SAP'[Date])=a))
Pbix attached.
Anonymous
6 years agoNot applicable
Hi, it still doenst work the value should be 13.718.798 for the july month , but this measure is giving the whole ammount of the year . I just need the accumulated until a month. But thank you for the help.