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: 
penpayom
Contributor II
Contributor II

Where not match

Hi 

I want to use Where not match function ,but it error  ,Where I wrong?

Please help me.

Thank you.

จับภาพ.PNG

Labels (1)
1 Solution

Accepted Solutions
vishsaggi
Champion III
Champion III

‌yyou cannot use like that in the field list try like

LOad field1,

field2

.

.

.

from tablename

where not match(Knot_mc_kat, ‘GF-Stock’,’NON-Fab’);

View solution in original post

3 Replies
vishsaggi
Champion III
Champion III

‌yyou cannot use like that in the field list try like

LOad field1,

field2

.

.

.

from tablename

where not match(Knot_mc_kat, ‘GF-Stock’,’NON-Fab’);

BalaBhaskar_Qlik
Master
Master

Try this:

DFIT_KNIT_YEAR:

LOAD

    KNIT_MC_YEAR,

    IF(NOT MATCH(KNIT_MC_CAT,'GF-STCOK','NON-FAB'),KNIT_MC_CAT) AS KNIT_MC_CAT,

    KNIT_MC_GROUP,

    .....

From abc;

Chanty4u
MVP
MVP

or

try this

write below code as last line

where field not in('Value1','Value2');