Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
manojkulkarni
Partner - Specialist II
Partner - Specialist II

Top Customer sorting

Hi everybody,

I need help in getting top customers from below table, where I would like to see Others in the bottom. Because Others consists of many small customers. Please any body provide me the better solution.

NameSales
Others2600
Cust12500
Cust21200
Cust31000
Cust4900
Cust5700
14 Replies
manojkulkarni
Partner - Specialist II
Partner - Specialist II
Author

Thanks for your replies & solution. But this will not work for my problem.

As mentioned earlier, my data is like below

NameSales
Others2600
Cust12500
Cust21200
Cust31000
Cust4900
Cust5700

"Others" is one of the customer name, having clubbed small customers @ data load itself. In chart I want to display actual customers first & later at the bottom merged one's. By default, Others is coming on top because of the highest sales value. But some how i want that to be at bottom. Is there way to sort all customers on there value descending except "Others"

MK_QSL
MVP
MVP

Like this?

MK_QSL
MVP
MVP

CHECK THIS ALSO...

Not applicable

maxgro
MVP
MVP

I think in sort tab

sort by expression

descending

pick(wildmatch(Name, 'Others', '*'), 'last', sum(Sales))

logic is: sort descending

if Name not  'Others' by sum(Sales)

if name = 'Others' put at the end ('last' or some other string)

1.png