Forum Discussion
yugofukuda
6 years agoHelper IV
Regarding TOTALMTD
Hi, I would like to calculate cumurative value until yesterday using todalmtd. How should I change this expression in ordar to do that?? TOTALMTD(sum(value),'Calendar'[Date])
- 6 years ago
Hi yugofukuda ,
Try this measure:
_T_MTD = TOTALMTD(SUM('Table'[Value]), 'Date'[Date], 'Date'[Date] <= TODAY() - 1)
- 6 years ago
Does this help?
Date_Logic = TOTALMTD(SUM('Table'[Value]), 'Table'[Date], 'Table'[Date] < TODAY())TotalMTD has a built in FILTER Option...
camargos88
6 years agoCommunity Champion
Hi yugofukuda ,
Try this measure:
_T_MTD = TOTALMTD(SUM('Table'[Value]), 'Date'[Date], 'Date'[Date] <= TODAY() - 1)
- yugofukuda6 years agoHelper IV
camargos88 fhill
Thank you very much!!!!