Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
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.