Skip to main content
Announcements
See why Qlik is a Leader in the 2024 Gartner® Magic Quadrant™ for Analytics & BI Platforms. Download Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Not Like in Qlikview

Guys,

I have a field with the name "Purchase Order ID", I need to exclude the values which contain "A".

Not WildMatch doesnt work properly

4 Replies
jpenuliar
Partner - Specialist III
Partner - Specialist III

<> "A"

Not applicable
Author

Where not [Purchase Order ID] ='A'

Colin-Albert

Test for wildmatch(fieldname, '*A*') = 0 or for wildmatch(fieldname, '*A*') >0 to test for "not like" or "like" respectively.

You can also use index()

where index(fieldname, 'A') = 0      will only select data that does not contain A in fieldname.

buzzy996
Master II
Master II

tab:

BUCKET:

LOAD * INLINE [

        porid,amt

   a,10

   b,20

   c,30

];

=If(porid <>'a',sum(amt))  --on ur expresion