Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
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

1 Solution

Accepted Solutions
swuehl
MVP
MVP

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
MVP
MVP

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