Skip to main content
Announcements
Qlik Connect 2025: 3 days of full immersion in data, analytics, and AI. May 13-15 | Orlando, FL: Learn More
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!