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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
deepakqlikview_123
Specialist
Specialist

Search string

Hello Team,

I want to exlude  specific string in column where

Dealer invoice code is not equal to containing DI99 can you please tell me how to proceed.

Moreover also suggest how to serach string in search box containing specific substring.

Thanks,

1 Solution

Accepted Solutions
jagan
Partner - Champion III
Partner - Champion III

Hi Deepak,

Try like this

[Dealer invoice code] Not Like '*DI99*'


Regards,

Jagan.

View solution in original post

14 Replies
anbu1984
Master III
Master III

While loading use where condition like below

While [Dealer invoice code] <> 'DI99'

Type specific search substring in search box.

deepakqlikview_123
Specialist
Specialist
Author

Bu this is not working an you please suggest other way for doing same

SunilChauhan
Champion II
Champion II

where

left(trim([Dealer Invoice code]),4)<>'D199';

hope this helps

Sunil Chauhan
its_anandrjs
Champion III
Champion III

Can you provide any sample for the same may be easy.

jagan
Partner - Champion III
Partner - Champion III

Hi Deepak,

Try like this

[Dealer invoice code] Not Like '*DI99*'


Regards,

Jagan.

its_anandrjs
Champion III
Champion III

Do like in script

Where NOT WildMatch( [Dealer invoice code],'*DI99*' )

SunilChauhan
Champion II
Champion II

you can use

wildmatch([Dealer invoice code],'*DI99*')=0

or

where not exists([Dealer invoice code],'DI99');

hope this helps

Sunil Chauhan
SunilChauhan
Champion II
Champion II

Hi

Can we use use like keyword in qlikview

i never found like keyword in qlikview.

Thanks

Sunil

Sunil Chauhan
jagan
Partner - Champion III
Partner - Champion III

Yes you can use, it is similar to LIKE in SQL.

Regards,

Jagan.