Forum Discussion
Running Total?
- 6 years ago
Hi kbarber ,
I create a measure using SUMX function. You could reference it to have a try.
Measure = SUMX ( FILTER ( FTE, FTE[Pos Start] <= MAX ( 'Calendar'[Date] ) && ( FTE[Pos End] >= MAX ( 'Calendar'[Date] ) || ISBLANK ( FTE[Pos End] ) ) ), FTE[FTE] )Best Regards,
Xue Ding
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
Hi kbarber ,
I create a measure using SUMX function. You could reference it to have a try.
Measure =
SUMX (
FILTER (
FTE,
FTE[Pos Start] <= MAX ( 'Calendar'[Date] )
&& (
FTE[Pos End] >= MAX ( 'Calendar'[Date] )
|| ISBLANK ( FTE[Pos End] )
)
),
FTE[FTE]
)
Best Regards,
Xue Ding
If this post helps, then please consider Accept it as the solution to help the other members find it more quickly.
We are having a peculiar situation where we need to calculating cumulative running totals in fly reducing a certain percentage value(.98). The new row should take the previous calculated value to cumulation.
Below is the sample data set. Here you see 5th row is cumulation till 4th row multiplied by .98, where 6th row should take the result of previous calculation that is 9.8 for cumulation and not 10.
Please let me know your thoughts on this which is our last resort 😊
Rep Month/Year Measure Cumulative result Calculation
Rep1 2017001 0 0
Rep1 2017002 0 0
Rep1 2017003 0 0
Rep1 2017004 10 9.8 (0+10)*.98 = 9.8
Rep1 2017005 10 19.404 (9.8 + 10)* .98
Rep1 2017006 0 19.01 (19.04+0)*.98
Rep1 2017007 10 28.43 (19.01 + 10)*.98
Rep1 2017008 20 47.46 (28.43+20) * .98
Rep1 2017009 6 52.39 (47.46+6)*.98
Rep1 2017010 30
Rep1 2017011 0
Rep1 2017012 0
- kbarber6 years agoFrequent Visitor
hello Anonymous - since your use case is different, i'd recommend posting as a new question. Also, i find if i create a dummy file and link to the post it's more likely to get a response...
- Kurt
- Anonymous6 years agoNot applicablekbarber thanks for you reply ,i need solution for this one ,I have tried may ways but multiplication is not happening during running total values.please let me know if you get any solution for that.