Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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!