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

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

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