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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
sridhar_sigired
Creator
Creator

Excluding NULL values in where class

Hello,

I have a QVD and in one of the field called "Store" null values are there. I need to exclude those NULL records.

I have tried with below conditions but i cannot able to filter those values. Can anyone help me on this?

Where Store<>' ';

Where Store <> 'NULL ';

1 Solution

Accepted Solutions
miguelbraga
Partner - Specialist III
Partner - Specialist III

Have you tried?

Where Store <> null();

Best regards,

D.A. MB

View solution in original post

7 Replies
tresesco
MVP
MVP

Try like:

Where Len(Trim(Store))>0;

Anil_Babu_Samineni

You can try this too

Where Store;

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
miguelbraga
Partner - Specialist III
Partner - Specialist III

Have you tried?

Where Store <> null();

Best regards,

D.A. MB

pradeep_s
Creator
Creator

Use not IsNull(Store)


or


Store <> Null()

sridhar_sigired
Creator
Creator
Author

Thank you all for quick response.

Anil_Babu_Samineni

Srishar, Does Tresesco suggestion is working or not?

Best Anil, When applicable please mark the correct/appropriate replies as "solution" (you can mark up to 3 "solutions". Please LIKE threads if the provided solution is helpful
sridhar_sigired
Creator
Creator
Author

His responses always works so i kept his response as helpful and used migual response.