Skip to main content
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!!!