Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi to all,
I would like to ask how to solve this issue. In the first graph there is a normal Pareto Chart with cumulated line (percentage value).
In the second one i would like to create the same graph but with the indication only in the tooltip (label calculated field). I tried to calc the cumulated % value but I did not succeed. Anyone can help me?
Thank in advanced.
Andrea
Do you have QV12? If you do, this can work
= 'Name: ' & Name & chr(10) &
'Purchased (€): ' & num(Purchased,'€ #.###,') & chr(10) &
'Purchased % Cumulated: ' & Num(Aggr(RangeSum(Above(Sum(Purchased), 0, RowNo()))/Sum(TOTAL Purchased), (Purchased, (NUMERIC, DESC))), '##,0%')
Also, you want to this pareto by just Purchased or Sum(Purchased)? It seems that the order of client might change if you do Sum(Purchased)
Do you have QV12? If you do, this can work
= 'Name: ' & Name & chr(10) &
'Purchased (€): ' & num(Purchased,'€ #.###,') & chr(10) &
'Purchased % Cumulated: ' & Num(Aggr(RangeSum(Above(Sum(Purchased), 0, RowNo()))/Sum(TOTAL Purchased), (Purchased, (NUMERIC, DESC))), '##,0%')
Also, you want to this pareto by just Purchased or Sum(Purchased)? It seems that the order of client might change if you do Sum(Purchased)
Thank you so much Sunny.
In the database there is only one row for each Client so is it different use Sum or it maybe changes something?
Not sure what was causing it before, but it seems that it has been resolved now
Goood i would like to ask to you some clarification about this sentence that you used in the previous calc:
(Purchased, (NUMERIC, DESC))
This is used in order to complete the AGGR function? how is this work?