Skip to main content
Announcements
NEW: Seamless Public Data Sharing with Qlik's New Anonymous Access Capability: TELL ME MORE!
cancel
Showing results for 
Search instead for 
Did you mean: 
stevejones1
Contributor III
Contributor III

2 conditions on same field

Hi

I have a field for Status which has the values 'closed','Confirmresolve','resolved'

i need to create a filter on CaseStatus which should have 2 values CVACLosed and Closed

Closed should include all 3 statuses

CVAClosed should only include 'Closed' and 'Confirmresolve'

How do i write an expression for CaseStatus field?

Thanks!

1 Reply
Digvijay_Singh

What if you create new island table having field CaseStatus and associate it with field Status like this -

CaseStatus:

Load * inline [

CaseStatus,Status

CVACLosed,Closed

CVACLosed,Confirmresolve

Closed,Closed

Closed,'Confirmresolve'

Closed,'resolved' ];