Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
jan2
Contributor
Contributor

Filter in Load Script

Hi,

my data contains rows which I don't need. So I want to filter them in the load script so that they are not loaded.

Simple example: I have the column location which contains: London, New York, LA, Berlin. But I only want to load the data for London and Berlin. Which command do I have to use?

Thanks in advance. 

Labels (3)
1 Reply
Frank_Hartmann
Master II
Master II

maybe like this:

Load * Inline [
location
London
NewYork
LA
Berlin] 
Where  match(location, 'London','Berlin');