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: 
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 (2)
1 Reply
Frank_Hartmann
Master II
Master II

maybe like this:

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