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

Announcements
Qlik and ServiceNow Partner to Bring Trusted Enterprise Context into AI-Powered Workflows. Learn More!
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

Labels (1)
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