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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
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

Labels (1)
3 Replies
pokassov
Specialist
Specialist

Hello

Load

...

from

...

where not isnull(your_field);

swuehl
Champion III
Champion III

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