Forum Discussion
cumulative sum
- 9 years ago
MEASURE 1
Running Total = CALCULATE ( SUM ( financials[actuals] ), FILTER ( ALLSELECTED ( financials ), financials[month] <= MAX ( financials[month] ) && MIN ( financials[month] ) <= TODAY () ) )Measure 1 will give you the RT up to today - however you may still overshoot a bit if there's no data for the current month.
So to address this you may want to use Measure 2.
MEASURE 2
Running Total 2 = IF ( MIN ( financials[month] ) <= CALCULATE ( LASTDATE ( financials[month] ), FILTER ( ALLSELECTED ( financials ), financials[actuals] <> BLANK () ) ), CALCULATE ( SUM ( financials[actuals] ), FILTER ( ALLSELECTED ( financials ), financials[month] <= MAX ( financials[month] ) ) ) )Good Luck! :smileyhappy:
thanks this is great, but how do i display cumualtive actuals though purely based on what is entered. i have forecast values till end of 2017 for each month, the report shows cumulative actuals till end of year too ..i need the cumulative actuals to stop based on when it was last entered..
MEASURE 1
Running Total =
CALCULATE (
SUM ( financials[actuals] ),
FILTER (
ALLSELECTED ( financials ),
financials[month] <= MAX ( financials[month] )
&& MIN ( financials[month] ) <= TODAY ()
)
)Measure 1 will give you the RT up to today - however you may still overshoot a bit if there's no data for the current month.
So to address this you may want to use Measure 2.
MEASURE 2
Running Total 2 =
IF (
MIN ( financials[month] )
<= CALCULATE (
LASTDATE ( financials[month] ),
FILTER ( ALLSELECTED ( financials ), financials[actuals] <> BLANK () )
),
CALCULATE (
SUM ( financials[actuals] ),
FILTER (
ALLSELECTED ( financials ),
financials[month] <= MAX ( financials[month] )
)
)
)Good Luck! :smileyhappy:
- Nikki9 years agoHelper II
Hi Sean
Can i be a pain and ask how i can resolve an issue when the user enters $0 dollars? the cumulative doesnt pick up infact it stays where it was where the actual is great than 0. below is a screenshot of what i mean.. if i change the "BLANK" to >0 i get a cumulative till end of the year with the forecast.
the project manager will from time to time enter and report zero actuals for that month..
thanks so much in advance :):):)