Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content
Announcements
WEBINAR April 23, 2025: Iceberg Ahead: The Future of Open Lakehouses - REGISTER TODAY
cancel
Showing results for 
Search instead for 
Did you mean: 
Gopi_E
Creator II
Creator II

remove end rows in excel without data

Hi,

I have an excel file with 5 fields, In this excel file end row count is 1307 but the problem is while loading excel file to QlikView it is loading 1048576 rows and the same time I have a data with blank values also. when I try to remove empty rows while loading its effect on my original data,

Can anyone suggest me here I have attached excel file

Thank you,

Gopi

1 Solution

Accepted Solutions
balabhaskarqlik

May be:

There are some special characters available in excel.

To avoid that use: where len(Trim(First Field)>0); condition.


Then it'll remove all the Empty rows those are not required in loading.

View solution in original post

4 Replies
m_woolf
Master II
Master II

Go to first empty row.

Do Shift + Ctrl + down arrow to select all the empty rows.

Do Home|Cells|Delete Sheets Rows

Save the file.

When you re-open the file, the previously empty rows will be forgotten by Excel.

balabhaskarqlik

May be:

There are some special characters available in excel.

To avoid that use: where len(Trim(First Field)>0); condition.


Then it'll remove all the Empty rows those are not required in loading.

balabhaskarqlik

Or try this:

where isnull(Column)=0 and not Column ='';

Ex:

ABC:

Load

A,

B,

C

from ABC.xlsx where isnull(A)=0 and not A ='';

Gopi_E
Creator II
Creator II
Author

Thanks for all the inputs