SOLVED

Excel Cumulative Sum

Brass Contributor

I need to cumulate incrementing values down.

Please see the attached file for better explanation.

 

Thank you in advance!

@Sergei Baklan 

9 Replies

Hi @Ubaid ur Rahman ,

 

If to repeat your formula to make it more universal when

=SUM(B$4:$B4)/COUNT(B$4:$B4)

Or you mean something else?

Hi Baklan,
thanks for your quick reply. I got this but what the real problem is how to perfrom this action in Pivot table. I have a month coulumn form 1 to 12. Then in second column I have an average of some numbers repeating monthly. in the third I want to perform the above action.

@Sergei Baklan 

 

please see the picture in attachment. I want to perform that incrementing cummulative action in pivot in the red marked area.

 

Thanks in advance

For cumulative sum, the formula is:
=SUM(B$4:B4)
For cumulative average, as what it seems you need, the formula is:
=AVERAGE(B$4:B4)

@Ubaid ur Rahman , so, like in your Excel file example but within PivotTable, correct?

@Sergei Baklan yes! as shown in the picture that how to simply apply that above formula to that column.

@Ubaid ur Rahman and how do you pivot first column, what gives 2.27 in Grand total?

@Sergei Baklan I don't need grand total. It comes up auto. So if possible without Grand total.

best response confirmed by Ubaid ur Rahman (Brass Contributor)
Solution

@Ubaid ur Rahman , I tried to do that on your data model, but didn't catch what do you calculate in it. Thus emulate on the table

image.png

It is named as Range in data model, the measure will be

CumulativeCountDifd:=CALCULATE (
    SUM ( [Actual value] )/COUNTROWS(Range),
    FILTER ( ALLEXCEPT ( Range, Range[Year] ), Range[Month] <= MAX ( Range[Month] ) )
)

You may it in Power Pivot and result is in second sheet.

1 best response

Accepted Solutions
best response confirmed by Ubaid ur Rahman (Brass Contributor)
Solution

@Ubaid ur Rahman , I tried to do that on your data model, but didn't catch what do you calculate in it. Thus emulate on the table

image.png

It is named as Range in data model, the measure will be

CumulativeCountDifd:=CALCULATE (
    SUM ( [Actual value] )/COUNTROWS(Range),
    FILTER ( ALLEXCEPT ( Range, Range[Year] ), Range[Month] <= MAX ( Range[Month] ) )
)

You may it in Power Pivot and result is in second sheet.

View solution in original post