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: 
Not applicable

Resident Load not like '*string*'

Hi *,

how can I manage to filter keywords in strings? I'm trying to load URLs that don't contain e.g. "?id=422"

LOAD looks like this:

LOAD url Resident List WHERE url not like '*?id=422*'.

Unfortunately "<>" doesn't work with with wildcards.

Thanks in advance.


Aloah

2 Replies
disqr_rm
Partner - Specialist III
Partner - Specialist III

Hi Aloha, Try:

LOAD
url as newurl
Resident List
WHERE wildmatch(url, '*?id=422*') = 0;

Thanks

Not applicable
Author

Works. Thanks a lot.