Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

hi,

my issue issue is I loaded a table , but it has null values or blank spaces in columns , i need to remove them , how can i do ?

can someone suggest me some expression or solution

3 Replies
pokassov
Specialist
Specialist

Hello

Load

...

from

...

where not isnull(your_field);

swuehl
MVP
MVP

To handle NULL as well as blanks, a common approach is to check against len(trim(FIELD)):

LOAD

     FIELD,

     AnotherFIELD

FROM TABLE

WHERE LEN(TRIM(FIELD));

Not applicable
Author

Thanks for the solutions, I will try doing it