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: 
abhaysingh
Specialist II
Specialist II

Logic Help

Hi,

I have few invoices start from DN like DN14/2014/123,, I don't want to include in my data.. how I can put where condition in that case

load invno,

field2,

field3

from table where invno<> '*DN*'

not working...

pls suggest

Labels (1)
3 Replies
swuehl
Champion III
Champion III

from table

where not invno like '*DN*';

MK_QSL
MVP
MVP

load

     invno,

     field2,

     field3

from table

where Not WildMatch(invno,'DN*');

Kushal_Chawda
MVP
MVP

Load *

From Table

where not wildmatch(invno,'DN*')