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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Select null values in set analysis

What is the syntax to select null values in set analysis ?

{"=null()"} is not good...

Thanks

11 Replies
Not applicable
Author

if (Date(DTSORTIE)=-693593, Null(), date(DTSORTIE)) as ADHERENT_DTSORTIE,

Not applicable
Author

Hi,

From my experience: best is to replace nulls with something else on loading (like date(makedate(2099,12,31)) ); if it's not possible:

{<FieldX -= {'*'} >} doesn't work for me; {$-<FieldX = {'*'} >} works but can be tricky to handle with a complex filter; working in all cases, classical Count(If( with Isnull() function. I go for the last solution...

Hope it can help.