Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

How to sort by Expression in Qlik Sense?

I used one filter in Qlik sense sheet.

The filter includes city names: Chicago, Boston, Seattle.

I need show the city name in order: Chicago, Boston, Seattle.

How could I keep the city name in above order in the Qlik sense filter?

Or is it possible to sort by Expression to get the above order in Qlik Sense?

Thanks for your help!

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

Use Qlik Match function. For example:

Match(Column_name,
                'Chicago', 
                'Boston',
                'Seattle'
      )

View solution in original post

1 Reply
Anonymous
Not applicable
Author

Use Qlik Match function. For example:

Match(Column_name,
                'Chicago', 
                'Boston',
                'Seattle'
      )