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: 
Anonymous
Not applicable

Remove Null Row

Hello qlikers,

My Table looks like:

Fruit          Comment
Apple        delicious
Banana     yellow
Grapes       -

- -> is Null, but i dont want the row with the grapes in my table.

So I'm creating a new table with a where clause.  But I cant find something similar like SQL statement Where Comment is Null. How can I "delete/remove" the row with the null? 

Thank you in advance. 

Labels (2)
3 Replies
bharathadde
Creator II
Creator II

Try this 

Dimension

=if(not isnull(Comment),Fruit) -- (Check box suppress the null value)

Expression

=Comment

marcus_sommer
MVP
MVP

Try it with:

load ... from ... where len(trim(Comment));

- Marcus

sugathirajkumar
Creator
Creator

Dim 1 :- =if(Comment<>'-',AddFruit)

Dim 2  : Comment 

Suppress null value 

if you dont want to suppress null value then 

Dime 1:- =if(Comment<>'-',AddFruit)

Dim 2 :- =if(Comment<>'-',Comment)