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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Load non null rows

Hi All,

I have an excel file which contains many records. There might be some rows which are null. I wish to load only non null rows in qlikview.

Is it possible?

Thanks,

Asma

3 Replies
swuehl
MVP
MVP

Use a WHERE clause, for example like

LOAD

     FieldA,

     FieldB,

...

FROM ExcelFile.xls

(....)

WHERE len(trim(FieldA));

MayilVahanan

Hi

Try like this

Load * from datasource where len(trim(Field)) > 0;

U can replace Field with ur excel column name.

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
sgrice
Partner - Creator II
Partner - Creator II

get excel driver to do it for you

example

Load .....

From

someexcel.xls

(biff, embedded labels, table is I2$, filters(
Remove(Row, RowCnd(CellValue, 1, StrCnd(null)))

))

The file wizard can build the statement. Enable Transform and then Conditional delete