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: 
cscherer
Contributor
Contributor

do not load empty rows - another question

Hello,

I´ve got another question regarding the load of empty rows.

I´ve got this script:

Directory;

LOAD date,

     amount,

     site

FROM

test_emptyrows.csv

(txt, codepage is 1252, embedded labels, delimiter is ';', msq)

Where Len ((date ) >0);

In my data source there are rows without date but with values in the other fields. This rows I do not want to load. What do I have to change?

Thanks,

cscherer

1 Solution

Accepted Solutions
swuehl
MVP
MVP

Try

...

Where Len (trim(date)) >0;

View solution in original post

2 Replies
swuehl
MVP
MVP

Try

...

Where Len (trim(date)) >0;

cscherer
Contributor
Contributor
Author

thanks!