Forum Discussion
Anonymous
3 years agoNot applicable
Use previous total with blank cumulative data
I am running aggregate totals based on GL for one of my reports. There is a gap in entries for a few periods where i would like to carry the previous periods amount if there were no transactions that...
PabloDeheza
Solution Sage
3 years agoHi there!
For cumulative sum you try this:
CALCULATE (
SUM ( ColumnToSum ),
FILTER (
ALL ( DateTable ),
DateTable[Date] <= MAX ( DateTable[Date] )
)
)
Let me know if that helps!