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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out 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.

Labels (1)
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

tresB
Champion III
Champion III

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.