Forum Discussion
vjnvinod
1 year agoImpactful Individual
Dax Logic Help for cumulative on Card
problem statement: my actuals. measure in the table shows cumulative value, but when i place the same measure on the card, i get that individual value of the month, as you can see in Feb its 50M a...
- 1 year ago
Hi vjnvinod , I tried to replicate your problem statement and below formula is working for me.
Just change the ALLSELECTED to ALL in your case.
IF([Actuals]>0,CALCULATE([Actuals],ALL('GroupOPEXCAPEX'),'GroupOPEXCAPEX'[DateColumn] <= MAX('GroupOPEXCAPEX'[DateColumn]) &&'GroupOPEXCAPEX'[Actual/Budget] = "Actuals"),BLANK())
anmolmalviya05
1 year agoSuper User
Hi vjnvinod, Please try this:
Total Cumulative Value =
CALCULATE(
SUMX(
ALLSELECTED('GroupOPEXCAPEX'[DateColumn]),
[Actuals]
),
'GroupOPEXCAPEX'[Actual/Budget] = "Actuals"
)
- vjnvinod1 year agoImpactful Individual