Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I use this formula in excel so i can calculate the cumulative frequency (like a Pareto), i need that numbers with a value less than 60% in red, between 60% and 90% yellow and more than 90% in green.
=SUMIF($B$2:$F$6,">="&B2)/SUM($B$2:$F$6)
PD
=if(sum(Total)=0,white(),
colormix1(sum(Total)/$(=max(aggr(sum(Total),LOSS))),Green(),red())) is not useful because it doesnt go through yellow and it's not so exactly.
And neither this formula works
=if(sum(Total)=0,white(),
if(rangesum(above(sum(Total),0,rowno()))/sum(TOTAL Total)<0.6,red(),
if(rangesum(above(sum(Total),0,rowno()))/sum(TOTAL Total)>0.9,Yellow(),
green())))
try replacing ABOVE with BEFORE
Thank you but it is still not working.
could you post a sample qvf ?
Yes, hope you can help me. And again really thank you very much.
Which direction are you accumulating? vertically or horizontally?
I would like to compare the value against the total (as it could be seen in the excel); but i don't have really very clear how does the RangeSum formula's work, what i need it's closer to the Colormix formula
Hi
Not sure it will helpfull but try this
if(sum(Total)=0,white(),
ColorMix1( hrank( total column(1))/ noofrows(TOTAL), lightred(), LightGreen()))
regards
Bruno