Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I have a data where the customer wants to see the top 5-10 engine model performers.
is the max function teh best one to use to make a chart show me the top ten? also how would i use it?
my field name/measure that i want to see is STD_Count, and the values in the field are just numbers i.e. 14,20,200,308.
i just want the top ten shown on the chart. my dimension is labled 'ENG_MDL'
please help!
Thank you!
-Jake
=if(Aggr(Rank(Sum(STD_Count)), ENG_MDL)<=10, ENG_MD, 'Others')
=if(Aggr(Rank(Sum(STD_Count)), ENG_MDL)<=10, ENG_MD, 'Others')
This is perfect, thank you!