Skip to main content
Announcements
Customer Spotlight: Discover what’s possible with embedded analytics Oct. 16 at 10:00 AM ET: REGISTER NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Loading specific recoreds from Flat file to Qlikview

Is there a way to choose the rows that needs to be laded into Qlikview.

Will I be able to restrict the data getting into the application .

I have a flat file and that is space separated.  wanted to load only the lines that start with a number 0,1,2 and eliminate all other rows in the file.

1 Solution

Accepted Solutions
swuehl
MVP
MVP

Sure, just add a WHERE clause to your load:

LOAD * INLINE [

A B

1 asdsa

2 sdfsd

5 sdf sd

3 sdfs

1 sdf

7 dfgdf

0 sdfsd

] (delimiter is ' ')

where Match(A,0,1,2);

View solution in original post

1 Reply
swuehl
MVP
MVP

Sure, just add a WHERE clause to your load:

LOAD * INLINE [

A B

1 asdsa

2 sdfsd

5 sdf sd

3 sdfs

1 sdf

7 dfgdf

0 sdfsd

] (delimiter is ' ')

where Match(A,0,1,2);