Forum Discussion
LewisH
9 years agoHelper II
Running total
I have a table called 'Service Desk List'. I Have two Measures which are Request = COUNTROWS('Service Desk List') Resolved = calculate(countrows('Service Desk List'), userelationship('Service Desk...
vanessafvg
9 years agoCommunity Champion
LewisH add to what of the previous month?
something like this?
measure = (([request] - [resolved]) + calculate([request], previousmonth(datetable[date])) )
(for the second part of the statement where there is calculate you need to be specific of what you want to add it to
LewisH
9 years agoHelper II
So We take the first month and we can see the Requested 78 - the Resolved 43 = 35.
In the second month we have 141 requested and 119 resoloved, leaving 22. So the new measure should show 35 + 22 = 57.
- vanessafvg9 years agoCommunity Champion
LewisH have you tried the above?
- LewisH9 years agoHelper II
I got this result which appears to be calculating the difference but not applying this to the previous difference.
- vanessafvg9 years agoCommunity Champion
LewisH which one did you use? please specify how you wrote the measure it required adjsutment probably