Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Good Day Everyone,
I am struggling trying to find a way to do resolve this TOTAL Top 10 value calculation. I require this TOTAL value in order to calculate the % value for the top ten list.
The Top 10 Formula I used:
=if(rank(total sum(Value1))<=10,sum(Value1))
Herewith a sample of the data. In the last column, I need this value to be 370 as that is the total of the top 10.
I have tried formulas like below for the TOTAL TOP 10 Value...with different combinations of dimensions ect.
=Sum(Total {<Dimension_1 = {"=Rank(Sum(Value1))<=10"} >}Value1)
=sum(total Aggr(if(Rank(aggr(Sum(Value1),Dimension_1,Dimension_2,Dimension_3),4,1) <=10,Sum(Value1),0),Dimension_1,Dimension_2,Dimension_3))
=sum(total Aggr(if(Rank(Sum(Value1),3,1) <=10,Sum(Value1),0),Dimension_1,Dimension_2,Dimension_3))
Hoping it is something I just miss and easy to resolve.
Thanks and Regards,
Kanon
Try:
Sum( total Aggr( if(rank(TOTAL sum(Value1))<=10,sum(Value1)), Dimension_1, Dimension_2, Dimension_3))
Try:
Sum( total Aggr( if(rank(TOTAL sum(Value1))<=10,sum(Value1)), Dimension_1, Dimension_2, Dimension_3))
Good Day Tresesco,
Thank you soo much, I have missed the TOTAL in the rank section it seems...