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

Is it possible to set multiple sort expressions?

I have a table consisting of category and dollar volume that I'd like to sort by dollar volume (desc), but would like to see the category of 'Other' to always be listed last.  Is that possible to do?

1 Solution

Accepted Solutions
Not applicable
Author

Try an expression like this maybe?

if(Category = 'Other', 9999, rank(dollar volumn))

View solution in original post

2 Replies
Not applicable
Author

Try an expression like this maybe?

if(Category = 'Other', 9999, rank(dollar volumn))

Not applicable
Author

That worked, thanks so much!!!