ruthhacche
Board Regular
- Joined
- Sep 22, 2017
- Messages
- 84
My current table is filtered for value by year so say start is 1/1/19 and end is 31/12/19 . I have a cumulative total that works below for me to total up the movements for the year selected. But I also want a cumulative total that includes transactions prior to the start date in the year selected. So I do not want the start date filtered to the currently selected date. Every time I try to do anything to the start date I get an error. Sure this is simple (but so am I).
Cumulative Total =
CALCULATE([Total],
DATESBETWEEN('Calendar'[Date],
MIN('Calendar'[Date]),
MAX('Calendar'[Date])
)
)
Cumulative Total =
CALCULATE([Total],
DATESBETWEEN('Calendar'[Date],
MIN('Calendar'[Date]),
MAX('Calendar'[Date])
)
)