Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
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

Labels (1)
1 Solution

Accepted Solutions
swuehl
Champion III
Champion III

Try

...

Where Len (trim(date)) >0;

View solution in original post

2 Replies
swuehl
Champion III
Champion III

Try

...

Where Len (trim(date)) >0;

cscherer
Contributor
Contributor
Author

thanks!