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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Make a query with a certain value range

Good day.


I have the following expression sum ([Q1 CAT]) which gives me some data in percentages from 0% to 100%. I want to know if there is a function on this expression that brings me those results but in a certain range That is, that is above 80%, less than 50% or between 50% and 80%.


I appreciate the collaboration.

1 Solution

Accepted Solutions
petter
Partner - Champion III
Partner - Champion III

You could do something like this:

If(Sum([Q1 CAT])>0.8,Sum([Q1 CAT]))



If(Sum([Q1 CAT])<0.5,Sum([Q1 CAT]))



If(Sum([Q1 CAT])>=0.5 AND Sum([Q1_CAT])<=0.8,Sum([Q1 CAT]))




View solution in original post

2 Replies
petter
Partner - Champion III
Partner - Champion III

You could do something like this:

If(Sum([Q1 CAT])>0.8,Sum([Q1 CAT]))



If(Sum([Q1 CAT])<0.5,Sum([Q1 CAT]))



If(Sum([Q1 CAT])>=0.5 AND Sum([Q1_CAT])<=0.8,Sum([Q1 CAT]))




Anonymous
Not applicable
Author

Thanks Petter, that's exactly what i needed