Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
bobbydave
Creator III
Creator III

Greater than and less than

if([Case Type] = 'CFIN' and [Recd To Close] >5<=10,1)                  as [SLA CFIN <= 10 Days],

Is there a way of writing the above statement, it seems that the greater and less than expression gives me an error.

Any ideas?

1 Solution

Accepted Solutions
sunny_talwar

Try this

if([Case Type] = 'CFIN' and [Recd To Close] >5 and [Recd To Close] <=10, 1)                  as [SLA CFIN <= 10 Days],

View solution in original post

3 Replies
trdandamudi
Master II
Master II

May be as below:

if([Case Type] = 'CFIN',If([Recd To Close] >5 And [Recd To Close]<=10,1))    as [SLA CFIN <= 10 Days],

sunny_talwar

Try this

if([Case Type] = 'CFIN' and [Recd To Close] >5 and [Recd To Close] <=10, 1)                  as [SLA CFIN <= 10 Days],

bobbydave
Creator III
Creator III
Author

Ah, just separate them. Simple as.

Thanks