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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
soniasweety
Master
Master

Nulls from DB

Hi all,

i am getting nulls from Database only

but i want to exclude nulls from DB while loading itself  how can i do this in script?  you can see in image with empty spaces i  dont want that

Thanks

Sonyempty.PNG

11 Replies
trdandamudi
Master II
Master II

Give a try as below:

WHERE Len(Trim(Deal_Type)) > 0

andrei_delta
Partner - Creator III
Partner - Creator III

Hi,

you can use also:

Load

...

From/Resident

Where not isnull(Field);