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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Exclusions in the script

Hello Everyone-

I am trying exclude all of the test patients we have loaded in one of our patient table.

I would like to exclude all of the patients that have "integration" as part of their name.  There are about 50-60 Test Patients with "integration" in their name.  What would be the best way to exclude them in the script?

Thanks!

1 Solution

Accepted Solutions
MK_QSL
MVP
MVP

Load * From TableName

Where NOT WILDMATCH(Patients,'*integration*');

View solution in original post

5 Replies
MK_QSL
MVP
MVP

Load * From TableName

Where NOT WILDMATCH(Patients,'*integration*');

its_anandrjs
Champion III
Champion III

The word integration is in and particular length or any position or it is random.

its_anandrjs
Champion III
Champion III

Load your table like

LOAD

*

From Location

Where not index( patients , 'integration' );

its_anandrjs
Champion III
Champion III

Did you check my solution also it is correct or not check once and let me know that.

Not applicable
Author

I did not check it, as the first response I received was a solution that worked.