Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
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)))