Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
GaneshLakshman
Contributor III
Contributor III

NULLs

Hi,

I 'm trying to find out the Ids that are null in the data.

in SQL we can say where SalesID is NULL, is there anything similar in Qlik sense?

My other question is if I use Where not exists(salesID), will it eliminate all the records that match with the previous load? and what if there are more than one load prior to this?

 

Thanks

2 Solutions

Accepted Solutions
jonathandienst
Partner - Champion III
Partner - Champion III

You can use:

where IsNull(SalesID)
or
where Len(SalesID)

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein

View solution in original post

2 Replies
jonathandienst
Partner - Champion III
Partner - Champion III

You can use:

where IsNull(SalesID)
or
where Len(SalesID)

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein