Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi all,
I have a table with the number of lines of each product. = Count(line) Dimension ItemId
I wanna know the accumulative number of lines in number and %
Any suggestion?
Many thanks
Ended up using expressions to do the accumulation
1) RangeSum(Above(TOTAL Count(SalesId), 0, RowNo(TOTAL)))
2) RangeSum(Above(TOTAL Count(SalesId), 0, RowNo(TOTAL)))/Sum(TOTAL Aggr(Count(SalesId), ItemId, name))
For Accumulation try using Full Accumulation option within the expressions tab:
For % Accumulation try full accumulation + Relative checked on expression tab:
Hi Sunny
I already tryied this but did not work
Would you be able to share a sample?
Here it is
Many thank's
Ended up using expressions to do the accumulation
1) RangeSum(Above(TOTAL Count(SalesId), 0, RowNo(TOTAL)))
2) RangeSum(Above(TOTAL Count(SalesId), 0, RowNo(TOTAL)))/Sum(TOTAL Aggr(Count(SalesId), ItemId, name))
WOWWWWWW
Bravo!!!
Many many thank's