Skip to main content
Announcements
Introducing a new Enhanced File Management feature in Qlik Cloud! GET THE DETAILS!
cancel
Showing results for 
Search instead for 
Did you mean: 
Qliksense_User
Contributor II
Contributor II

Exculding particular values of a field for particular values from a different field

Hi have 2 dimensions, Segment Code and Subjob No.

I do not want to show Subjob No '0' for  Segment Code '12' and '13'.

Please help..Thanx in advance

1 Solution

Accepted Solutions
Qliksense_User
Contributor II
Contributor II
Author

I got it.

if([OS SEGMENT CODE]='12', if(not(WildMatch(SUBJOB_NO,'0')),SUBJOB_NO),
if([OS SEGMENT CODE]='13', if(not(WildMatch(SUBJOB_NO,'0')),SUBJOB_NO),
SUBJOB_NO))

Thanx.

View solution in original post

1 Reply
Qliksense_User
Contributor II
Contributor II
Author

I got it.

if([OS SEGMENT CODE]='12', if(not(WildMatch(SUBJOB_NO,'0')),SUBJOB_NO),
if([OS SEGMENT CODE]='13', if(not(WildMatch(SUBJOB_NO,'0')),SUBJOB_NO),
SUBJOB_NO))

Thanx.