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

Running total in combo chart

Hi All,

I'm trying to create a combo chart containing sales by month as a bar chart and a running total of sales as a line graph.

Does anyone know how to create the running total portion? I can only get the line chart to reflect the month by month sales (which is what the bar chart is already doing).

Thanks

1 Solution

Accepted Solutions
sunny_talwar

Should be like this

RangeSum(Above(Sum(Sales), 0, RowNo()))

View solution in original post

4 Replies
ali_hijazi
Partner - Master II
Partner - Master II

rangesum(above(your_expression),0,rowNo(Total))

I can walk on water when it freezes
sunny_talwar

Should be like this

RangeSum(Above(Sum(Sales), 0, RowNo()))

Not applicable
Author

You mean adding previous dimension expression value or anything else, can you explain in brief.

Not applicable
Author

RangeSum(Above(Sum(Sales), 0, RowNo())

The above calculation worked perfectly. Thank you for the quick response!