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: 
surajap123
Creator III
Creator III

don't filter null values

Hi All,

I am using exists() to filter the data from 2nd table. However i don't want to filter out the row if the value is null.

Stock:

LOAD Material

FROM

data.xlsx

(ooxml, embedded labels, table is Stock);

Sales:

LOAD Product,

     Sales

FROM

data.xlsx

(ooxml, embedded labels, table is Sales)

where exists(Material,Product);

Please help.

1 Solution

Accepted Solutions
daveamz
Partner - Creator III
Partner - Creator III

Hi Suraj,

where exists(Material,Product) OR IsNull(Product)



​Regards,

David

View solution in original post

3 Replies
daveamz
Partner - Creator III
Partner - Creator III

Hi Suraj,

where exists(Material,Product) OR IsNull(Product)



​Regards,

David

tresesco
MVP
MVP

May be like:

....

FROM

data.xlsx

(ooxml, embedded labels, table is Sales)

where exists(Material,Product) OR  IsNull(Product);

surajap123
Creator III
Creator III
Author

Awesome.:)

Thanks everyone.