Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
I'm trying to show accumulation in a line chart . I have below expression, it works fine when only one category is selected but if I select multiple categories. It doesn't work.
RangeSum(Above(Total sum(local_price),0,RowNo(total)))
I have 2 dimensions , Month and Category(legend).
Any suggestions on this.
hi may be this
sum(
Aggr(
RangeSum(Above(Total sum(local_price),0,RowNo(total))) ,Month,legend)
)
@brunobertels This does not work in my case but on a sample data this works , may be something is not wrong/missing in my original data. Thanks !!