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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
ift_isabelle
Partner - Creator III
Partner - Creator III

Do not load when empty

Hi,

I have a dataset which has a total at the end.

I don't want to load it into my dataset.

How can I do that?

DateValueRemark
21/6/20165This is the data i want to load
20/6/20164This is the data i want to load
19/6/20163This is the data i want to load
This is an empty row which i want to delete
12This is the total row, which i don't want to load

I tried:

LOAD

     'Source1' As Source,

     [date],

     Value

FROM [lib://location.xlsx]

(ooxml, embedded labels)

Where [date] <> '';

Please help!

Thanks in advance,

Isabelle

1 Solution

Accepted Solutions
marcus_malinow
Partner - Specialist III
Partner - Specialist III

You could try

WHERE Len(Trim([date])) > 0

View solution in original post

2 Replies
Colin-Albert
Partner - Champion
Partner - Champion

Try     Where [date] > '';

marcus_malinow
Partner - Specialist III
Partner - Specialist III

You could try

WHERE Len(Trim([date])) > 0