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

removing rows

How removing  rows starting with PE a field in the load?

1 Solution

Accepted Solutions
Not applicable

There are several ways to accomplish this filter, besides the wildmatch mentioned above, can also use the keyword LIKE.

 

Ex.:

WHERE  YOUR_FIELD LIKE 'PE*'

OR NEGATIVE EXPRESSION

WHERE  NOT (YOUR_FIELD LIKE 'PE*')

View solution in original post

4 Replies
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

By not loading them in the first place:

Data:

Load * from ...somesource...

where not wildmatch(MyField,'PE*');



talk is cheap, supply exceeds demand
Not applicable

There are several ways to accomplish this filter, besides the wildmatch mentioned above, can also use the keyword LIKE.

 

Ex.:

WHERE  YOUR_FIELD LIKE 'PE*'

OR NEGATIVE EXPRESSION

WHERE  NOT (YOUR_FIELD LIKE 'PE*')

manideep78
Partner - Specialist
Partner - Specialist

LOAD * from DataSource

..................

.......................

where NOT(Field_Name LIKE 'PE*');

carlos13
Creator
Creator
Author

thank you