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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
sibin_jacob
Creator III
Creator III

Sorting Listbox

Hai,

I want to sort  listbox in a specified order. Filed name for the list box is 'Decile_Type' and the values are High, Medium , Low.

I can' change the order in backend. I want it in the same order (High, Medium, Low).  I Can't Use load order.

Is it possible to sort the listbox in specified order ?

Is it possible to achieve this sort order using 'sort by expression' option?

Thanks,

Sibin Jacob.C

Labels (1)
1 Solution

Accepted Solutions
swuehl
Champion III
Champion III

Try a sort by expression like

=match(Decile_Type,'High','Medium','Low')

If you say you can't change order in the backend, that means you don't have access to the script / you can't change the script?

If you do have access to the script, there are several methods to prepare your field sorting in the script, so you don't need a sort by expression in the UI, at different places.

View solution in original post

2 Replies
swuehl
Champion III
Champion III

Try a sort by expression like

=match(Decile_Type,'High','Medium','Low')

If you say you can't change order in the backend, that means you don't have access to the script / you can't change the script?

If you do have access to the script, there are several methods to prepare your field sorting in the script, so you don't need a sort by expression in the UI, at different places.

sibin_jacob
Creator III
Creator III
Author

Thank you Swuehl. It is working Fine.

Regards,

Sibin Jacob.C