Skip to main content
Announcements
Introducing a new Enhanced File Management feature in Qlik Cloud! GET THE DETAILS!
cancel
Showing results for 
Search instead for 
Did you mean: 
surajap123
Creator II
Creator II

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 II
Creator II
Author

Awesome.:)

Thanks everyone.