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

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Problem with not in

Hello everyone,

I have a trouble with the LOAD part in my script.

I want to do :

if (CODE<>('800','810','830,'410','420','900'), 'Not OK') as [Flow]

But it doesn't work.

Is someone have any solution ?

Thanks !

1 Solution

Accepted Solutions
PrashantSangle

Hi,

Try With wildmatch()

Like

if (not wildmatch(CODE,'800','810','830,'410','420','900'), 'Not OK') as [Flow]



Regards,

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂

View solution in original post

5 Replies
PrashantSangle

Hi,

Try With wildmatch()

Like

if (not wildmatch(CODE,'800','810','830,'410','420','900'), 'Not OK') as [Flow]



Regards,

Great dreamer's dreams never fulfilled, they are always transcended.
Please appreciate our Qlik community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂
its_anandrjs
Champion III
Champion III

Try and write another way

if( NOT Match(CODE,'800','810','830,'410','420','900'), 'Not OK') as [Flow]

MK_QSL
MVP
MVP

IF(NOT MATCH(CODE,'800','810','830','410','420','900'), 'Not OK') as [Flow]

maxgro
MVP
MVP

=if ( not match(CODE,'800','810','830','410','420','900'), 'Not OK', 'OK') as Flow

Not applicable
Author

It works !

Thank you everyone