Skip to main content
Woohoo! Qlik Community has won “Best in Class Community” in the 2024 Khoros Kudos awards!
Announcements
Nov. 20th, Qlik Insider - Lakehouses: Driving the Future of Data & AI - PICK A SESSION
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);