Forum Discussion
Running total
LewisH have you tried the above?
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
- LewisH9 years agoHelper II
I used
Qty. Live = (([request] - [resolved]) + CALCULATE([request] - [Resolved], PREVIOUSMONTH(DateKey[Date]) )).
I guess it's this part which I'm not understanding correctly..
CALCULATE([request] - [Resolved], PREVIOUSMONTH(DateKey[Date]) )).
- LewisH9 years agoHelper II
If I was to use this
Qty. Live2 = (([request] - [resolved]) + CALCULATE([request] - [Resolved], PREVIOUSMONTH(DateKey[Date]) ))
How can I chage this to only apply when the value's (Request and Resolved) aren't both blank?
- vanessafvg9 years agoCommunity Champion
did you try the running total? (i adjusted it slightly_
measure = calculate([request]-[resolved], filter(datetable, datetable[date] <= max(datetable[date]))