Forum Discussion
Kpower
9 years agoFrequent Visitor
Previous MTD
Hello, the calculation for Prev MTD is like this Last MTD = CALCULATE(sum(DAILYTRANSACTIONS[Amount]), DATEADD(DATESMTD(YEAR_MONTH_DIMENSION_TAB[Date]), -1, MONTH)) The value is showing if on...
- Anonymous9 years ago
Hi Kpower,
You can refer to below formula to calculate the running total and the previous running total.
Measures:
RunningTotal = CALCULATE(SUM('Table'[Amount]),FILTER(ALL('Table'),'Table'[Date]<=MAX('Table'[Date]))) PreviousRunningTotal = var temp=MAX('Table'[Date]) Return CALCULATE(SUM('Table'[Amount]),FILTER(ALL('Table'),'Table'[Date]<=DATE(YEAR(temp),MONTH(temp)-1,DAY(temp))))Regards,
Xiaoxin Sheng
Anonymous
9 years agoNot applicable
Hi Kpower,
You can refer to below formula to calculate the running total and the previous running total.
Measures:
RunningTotal = CALCULATE(SUM('Table'[Amount]),FILTER(ALL('Table'),'Table'[Date]<=MAX('Table'[Date])))
PreviousRunningTotal =
var temp=MAX('Table'[Date])
Return
CALCULATE(SUM('Table'[Amount]),FILTER(ALL('Table'),'Table'[Date]<=DATE(YEAR(temp),MONTH(temp)-1,DAY(temp))))
Regards,
Xiaoxin Sheng