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

Excluding values in Load script

Hi all,

I want to exclude values that contain say 'ABC' in the string during Load Script.

Thank you.

Siddhesh

Labels (1)
1 Solution

Accepted Solutions
tresB
Champion III
Champion III

Use where clause like:

Load

          ...

From <> Where not Wildmatch(FieldName, '*ABC*');

Or,

From <> Where not FieldName Like '*ABC*';

View solution in original post

3 Replies
tresB
Champion III
Champion III

Use where clause like:

Load

          ...

From <> Where not Wildmatch(FieldName, '*ABC*');

Or,

From <> Where not FieldName Like '*ABC*';

prma7799
Master III
Master III

Like this?

Load

          ......

From <> Where  FielName <>   'ABC' ;


Or try tresesco‌ solution above.

siddheshmane
Creator
Creator
Author

Thanks a lot.