Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
How can this be done
I have numerous customers, however, I only want to display the first 5
Thanks
Under Chart Properties > Dimension Limits > Select Show Only Largest 5 Values, then Deselect 'Show Others' under 'Options':
use dimension limits tab in chart properties and select option first 5 values
Attached is the sample application with the bar chart. All you need to do is just restrict the maximum visible bars to 5 and sort the Y axis to descending. I hope this helps.
When I restrict the values to the top 5, im given a list of the top 4 customers and then the 5th is an accumulation of all the other customers.
So, for instance, if my sales figure was 100
Cust 1 - 10
Cust 2 - 5
Cust 3 - 3
Cust 4 - 2
Other - 80
This completely distorts the chart.
How can I have the top 5 customers?
Thanks
=aggr(if(rank(sum([Order Amount]))<=0,Customer),Customer)
Use something like this as the dimension
Under Chart Properties > Dimension Limits > Select Show Only Largest 5 Values, then Deselect 'Show Others' under 'Options':
Right in front of me (as always!)
Thank you
Thank You