Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
ecabanas
Creator II
Creator II

Remove blank lines from an excel import

Hi guys,

I'm loading an excel file. After loading, there are 30 rows with data but there are  1048575 rows.

How could I import only the rows with data?

Thank's

Eduard

1 Solution

Accepted Solutions
tamilarasu
Champion
Champion

Hi Eduard,

Try like,

Load *

From

Source

WHERE(not IsNull(FieldName));    \\ It can be any not null field

View solution in original post

5 Replies
Anil_Babu_Samineni

What do you mean that

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
tamilarasu
Champion
Champion

Hi Eduard,

Try like,

Load *

From

Source

WHERE(not IsNull(FieldName));    \\ It can be any not null field

Not applicable

Hi,

While importing data from excel , in "File Wizard" window, Apply Conditional Delete (add compare with value->is empty function) condition in "Enable Transformation Step".

Thanks!

miguelbraga
Partner - Specialist III
Partner - Specialist III

Hey there,

Can you please send to us your script or even a sample of your qvw and/or sample of Excel file? Only then we can help you out

Best regards,

D.A. MB

trdandamudi
Master II
Master II

You can also try below:

Load *

From

Source

WHERE Len(Trim(FieldName)) > 0;    \\ It can be any field