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

Labels (1)
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.