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

no load data that starts with a tilde?

What where statement can I use to not load data that starts with a tilde?

1 Solution

Accepted Solutions
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Where NOT Left(SourceName,1) = '~'


talk is cheap, supply exceeds demand

View solution in original post

7 Replies
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Where NOT Left(SourceName,1) = '~'


talk is cheap, supply exceeds demand
Not applicable
Author

Thank you it works great.

rbecher
MVP
MVP

‌Please mark the right answer as "right answer", not yours!!

Astrato.io Head of R&D
Not applicable
Author

Sorry about that but not sure how to uncheck the wrong correct answer and check the correct one?

Not applicable
Author

Hi Gysbert,

I also have a similar problem in my case i don't want "undefined" data from my filter , i just altered your code above but am getting error, Please see the attached screenshot. can u help me on this?not able to get the desired output.PNG

Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

A Where clause can't be used in a chart expression, only in load statements in the script.

And "undefined" is 9 characters long, not 1. So you need to use 9 as the second parameter in the Left function.


talk is cheap, supply exceeds demand
Not applicable
Author

Thank you Gysbert !!