Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Save $650 on Qlik Connect, Dec 1 - 7, our lowest price of the year. Register with code CYBERWEEK: Register
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

If(not(Wildmatch...with 2 conditions, like OR

=if(not(wildmatch(Site_Id,'*pr*')),Site_Id, 'Ignore'))

The above returns 'Ignore' whenSite_Id contains pr.  I would like to extend it to do that same when Site_Id contains Site_Id mr

1 Solution

Accepted Solutions
swuehl
MVP
MVP

Try

=if(not(wildmatch(Site_Id,'*pr*','*mr*')),Site_Id, 'Ignore'))

View solution in original post

2 Replies
swuehl
MVP
MVP

Try

=if(not(wildmatch(Site_Id,'*pr*','*mr*')),Site_Id, 'Ignore'))

Anonymous
Not applicable
Author

I thought I had tried that...apparently not.  Thank You!