Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Not to load a value '-'

Hi,

I would like to eliminate all the rows of a table having empty a specific field.

I supposed I have to write:

LOAD

...

where field<>'-'

but it does not work

I wrote also:

where field<>Null

and it gives me syntax error.

How can I write this condition correctly?

Thanks

1 Solution

Accepted Solutions
shree909
Partner - Specialist II
Partner - Specialist II

Hi,

Try this

where len(trim(field))<>0

View solution in original post

1 Reply
shree909
Partner - Specialist II
Partner - Specialist II

Hi,

Try this

where len(trim(field))<>0