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

How to filter Null Values in Script

Hi All,

Please find the attached excel file.

I need to filter the null values alone in edit script.(Date Not Filled Records in attached excel file).

Kindly help me on this query.

Regards,

Sivasu

1 Solution

Accepted Solutions
Anonymous
Not applicable
Author

Hi!

You can use where IsNull(Date) = true() to bring all the values that the Date are null;

Or where IsNull(Date) = false() to bring the oposite.

Regards,

Gabriel

View solution in original post

2 Replies
Anonymous
Not applicable
Author

Hi!

You can use where IsNull(Date) = true() to bring all the values that the Date are null;

Or where IsNull(Date) = false() to bring the oposite.

Regards,

Gabriel

JonnyPoole
Former Employee
Former Employee

As above, this will only bring in the rows of data where Date is not null:

LOAD ItemNo,

     Month,

     Date

FROM

  (ooxml, embedded labels, table is Sheet1)

where not IsNull(Date);