Forum Discussion
Matt_dev
7 months agoFrequent Visitor
DAX Running Total Problem
I have seen versions of this question asked and answered here many times but I can't get any of those answers to work for my situation. I have a dataset called VW3 which contains sales data over d...
- 7 months ago
Try:
GMRunningTotal =
CALCULATE(
SUM(VW3[PL]),
DATESBETWEEN(
SAD[Date],
MIN(SAD[Date]),
MAX(SAD[Date])
)
)If this answer helped, please click 👍 or Accept as Solution.
-Kedar
LinkedIn: https://www.linkedin.com/in/kedar-pande
Kedar_Pande
7 months agoSuper User
Try:
GMRunningTotal =
CALCULATE(
SUM(VW3[PL]),
DATESBETWEEN(
SAD[Date],
MIN(SAD[Date]),
MAX(SAD[Date])
)
)
If this answer helped, please click 👍 or Accept as Solution.
-Kedar
LinkedIn: https://www.linkedin.com/in/kedar-pande
- Matt_dev7 months agoFrequent Visitor
Thank you very much, that is exactly what I needed