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

Set analysis with >= and <

I am trying to make the below expression work but I am missing the portion that ATADiff should be less than 10

count({<Country={CA},CallStatusDesc={Dispatched},ATADiff = {">=1"}>}MemberID)

Basically am trying to attain 1 <= ATADiff < 10 using the above expression.

Pleas help.

Thank you,

Amit

1 Solution

Accepted Solutions
jonathandienst
Partner - Champion III
Partner - Champion III

Hi

count({<Country={CA},CallStatusDesc={Dispatched},ATADiff = {">=1<10"}>}MemberID)

HTH

Jonathan

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein

View solution in original post

3 Replies
jonathandienst
Partner - Champion III
Partner - Champion III

Hi

count({<Country={CA},CallStatusDesc={Dispatched},ATADiff = {">=1<10"}>}MemberID)

HTH

Jonathan

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
Not applicable
Author

Hi

try this

count({<Country={CA},CallStatusDesc={Dispatched},ATADiff = {">=1<10"}>}MemberID)

Just give like this it will work fine

Not applicable
Author

Thanks guys. I didn't know the answer was that simple.