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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Sorting manually

Hi all,

I have a problem in sorting by dimension with some condition.

My dimension fields are

A

B

C

D

E

F

My requirement is I need to sort it out alphabetical order A-Z with 'D' at last row.

Waiting for help.

2 Replies
Not applicable
Author

Hi Veman

please sorting your dimension by this experiences

wildmatch(Month_Name,'A','B','C','E','F','G','H','I','J','K','L','D')

Regards

Ashish

Not applicable
Author

you can use sort by using this expression:

if(letter = 'D', 1000000, ord(letter))


it means you will sort letter by their ascii values for all letters except D which will get 10000000 instead of the normal value, thus going at last row