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

How can I order custom filter?

I have this filter:

This is my expression:

=if([Fatturato (k€)]<=50000, ' < 50 mln ', If(50000 <<[Fatturato (k€)]>= 100000 , ' 50 mln < & <100 mln', ' >100 mln'))

I want order:

' >100 mln'

' 50 mln < & <100 mln'

' < 50 mln '


TK


NM

1 Reply
sunny_talwar

Try this:

=If([Fatturato (k€)] <= 50000,

          Dual(' < 50 mln ', 3),

  If([Fatturato (k€)] > 50000 and [Fatturato (k€)] >= 100000,

          Dual(' 50 mln < & <100 mln', 2),

          Dual(' >100 mln', 3)))