Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello friends,
Please refer to image1 shown above
I need to show top 10 values shown in image2 .Grey color highlighted cells should always be included in top 10.
It would be great if you have some solution for this..
Thanks in advance !!!
Hi ,
Check this,
=If(MAKE= 'ANT' ,Sum(VOLUME),
If(MAKE= 'BRU' ,Sum(VOLUME),
If(MAKE= 'ROBY' ,Sum(VOLUME),
aggr(if(Rank(Sum(VOLUME))<=10,VOLUME),MAKE))))
In place of the Fields you can place your required fields.
Hope this helps,
PFA,
Hirish
What logic highlights them in grey ?
all 3 highlighted lies in a same brand for ex:-
A11 | A |
B | |
C |
Dear Snehal,
You can create static variables to find top 7 ranked Make and another 3 variable to find 10,12 and 14th ranked Make and pass them in you those variable in your set analysis expression of volume. This will restrict your dimension to those 10 values. Hope this helps.
Regards,
Mohsin Choudhary
Hi,
an example attached.
Can this solution help you?
E
Hi ,
Check this,
=If(MAKE= 'ANT' ,Sum(VOLUME),
If(MAKE= 'BRU' ,Sum(VOLUME),
If(MAKE= 'ROBY' ,Sum(VOLUME),
aggr(if(Rank(Sum(VOLUME))<=10,VOLUME),MAKE))))
In place of the Fields you can place your required fields.
Hope this helps,
PFA,
Hirish
Thanks Hirish.. This solution is helpful