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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
smilingjohn
Specialist
Specialist

Match

Hi All

Iam trying to write an expression for not match the following Classes but this show error ,

someone please correct me.

if(not(match(Class,'A','B','C','D'),Class))

Tahnks in Advance

Labels (1)
1 Solution

Accepted Solutions
antoniotiman
Master III
Master III

if(not match(Class,'A','B','C','D'),Class)

View solution in original post

4 Replies
antoniotiman
Master III
Master III

if(not match(Class,'A','B','C','D'),Class)

devarasu07
Master II
Master II

Try like this

in your expression

if(not match(Class,'A','B','C','D'),Class)

also u write like this

pick(not match(Class,'A','B','C','D'), Class)

Chanty4u
MVP
MVP

try this


if(notmatch(Class,'A','B','C','D'),Class))

Anil_Babu_Samineni
MVP
MVP

Or

if(not WildMatch(Class,'A','B','C','D'),Class)

Match

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful