Forum Discussion
IC95
1 year agoNew Member
Running Total Measure
Hi, I hope someone can help me. I have the Total Hours Efficiency Workcentre ( data I have) I then have a measure with the Average Demonstrated Capacity(Last 3 Months) Average De...
Omid_Motamedise
1 year agoSuper User
use this
Past Dues Running Total =
CALCULATE(
[Past Dues],
FILTER(
ALL('DIM_Date'),
'DIM_Date'[theDate] <= MAX('DIM_Date'[theDate])
)
)