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

removing null values from data through script

 

 

t1:

load * inline[

name, salary

a,12

b,1232

c,24314

d,2144

e,2134

f,435665

,6878

]

where isnot null(Name);

I have written this code, but still my null values are coming.

So please help me out.

1 Solution

Accepted Solutions
giakoum
Partner - Master II
Partner - Master II

[temp]:

LOAD * INLINE [

    name, salary

    a, 12

    b, 1232

    c,24314

          d,2144

          e,2134

          f,435665

          ,6878

];

NoConcatenate [temp1]:

load * Resident [temp] where not isnull(name) and name <> '';

DROP Table [temp];

View solution in original post

1 Reply
giakoum
Partner - Master II
Partner - Master II

[temp]:

LOAD * INLINE [

    name, salary

    a, 12

    b, 1232

    c,24314

          d,2144

          e,2134

          f,435665

          ,6878

];

NoConcatenate [temp1]:

load * Resident [temp] where not isnull(name) and name <> '';

DROP Table [temp];