Forum Discussion
mikeoshields
7 years agoHelper I
Running Totals
I know there are a plethora of running total posts but I haven't found an answer to my specific issue. My running totals need to be based on the DateDiff field which is a measure. Running1 is a cum...
- 7 years ago
Actually I found another solution that's a little simpler:
Running1 = CALCULATE(SUM(wr_route[DateDiff),FILTER(ALLSELECTED(wr_route),wr_route[wr_lot]=MAX(wr_route[wr_lot]) &&wr_route[MaxDate]<=MAX(wr_route[MaxDate])))
Ashish_Mathur
7 years agoSuper User
You are welcome. You might as well share the link from where i can download your PBI file.
mikeoshields
7 years agoHelper I
Actually I found another solution that's a little simpler:
Running1 = CALCULATE(
SUM(wr_route[DateDiff),
FILTER(
ALLSELECTED(wr_route),
wr_route[wr_lot]=MAX(wr_route[wr_lot]) &&
wr_route[MaxDate]<=MAX(wr_route[MaxDate])
)
)