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

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

Null Value

Hi all,

How can i load data without null values

SRS

3 Replies
Jason_Michaelides
Partner - Master II
Partner - Master II

Maybe put WHERE IsNull(YourField)=0 in your load statement?

kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

HI,

   You can achieve this in this way.

    Load * from ABC where not isnull(Field1);

   Here Field1 is the field from which you dont want the null data.

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
Not applicable
Author

Hi,

Load * from Table_Name where Field_Name <> ' ' ;

Hope it helps

Regards

Ravikumar