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: 
jagannalla
Partner - Specialist III
Partner - Specialist III

How to write set analysis in expression

Hi,



I am writing the expressions like this to get small,medium,large.

For small---> Count({$<Size={"<$(vLBound)"}>} Debris) i,e Size <= A

For Large ----> Count({$<Size={">$(vUBound)"}>} Debris) i.e Size >=B

How can i write the expression for medium ? i.e A < Size < B

2 Replies
pover
Partner - Master
Partner - Master

Try something like this:

Count({$<Size={">$(vLBound)<$(vUBound)"}>} Debris)

Regards.

jagannalla
Partner - Specialist III
Partner - Specialist III
Author

Thanks for u r solution.....it's working