Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Calculate accumulated values

Hello,

in a table accumulated values should be calculated. The column Proj contains accumulated values. How can column Test calculated?

 

The following formula have no function (Column (1)-Column (2))

Regards Stefan

1 Solution

Accepted Solutions
sunny_talwar

Or change your second expression to be this

RangeSum(Above(Proj, 0, RowNo()))

with no accumulation selected

Capture.PNG

View solution in original post

5 Replies
sunny_talwar

May be this

Column(1)-RangeSum(Above(Proj, 0, RowNo()))


Capture.PNG

Kushal_Chawda

Use this

sum(Prod)-sum(Proj)

sunny_talwar

Or change your second expression to be this

RangeSum(Above(Proj, 0, RowNo()))

with no accumulation selected

Capture.PNG

Anonymous
Not applicable
Author

Many thank. How can I create a 100% stacked bar chart?AccumulatedValue01.JPG

sunny_talwar

What is the logic? Can you share the expected percentage in Excel file?