Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out 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

Labels (1)
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