Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi
I am trying to add a cumulative percent column of total sales in a straight table:
here's an example :
Customer sales %sales Cumulative %sales
a 200 40% 40%
b 150 30% 70%
....
Deos anyone know what's the formula for the last column?
Many Thanks
Tal
Ok so this one works for me but it still disarrays my order :
rangesum(Above(total sum(TotalNetSalePrice), 0, rowno(Total))) / sum(total TotalNetSalePrice)
So in ordr to maintain the sorting, you need to sort by expression the dimension you want.
In this case customer (a,b...)
Thanks
Try this:
rangesum(above(sum(sales),0,rowno()))/sum(total sales)
Doesn't work 😞 plus it disarrays the previous sorted column
Ok so this one works for me but it still disarrays my order :
rangesum(Above(total sum(TotalNetSalePrice), 0, rowno(Total))) / sum(total TotalNetSalePrice)
So in ordr to maintain the sorting, you need to sort by expression the dimension you want.
In this case customer (a,b...)
Thanks