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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Escape asterix (*) in load statement

Hi all,

I know this seems a simple question however I haven't been able to find a solution for the following loading only entries that do not contains '*'.

I'm trying to load data from QVD where one of the field (Description) contains '*' along with other characters. I would like to discard any rows with * in the Description. There are many purmutaions of the *.

ex.

*Dennis S

Dennis * Rad

*null (where null) is the string

Any help is apreciated.

Thanks,

T

1 Solution

Accepted Solutions
jonathandienst
Partner - Champion III
Partner - Champion III

T

LOAD ...

     Description,

     ...

From ....

Where Index(Description, '*') = 0;

Regards

Jonathan

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein

View solution in original post

2 Replies
jonathandienst
Partner - Champion III
Partner - Champion III

T

LOAD ...

     Description,

     ...

From ....

Where Index(Description, '*') = 0;

Regards

Jonathan

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
Not applicable
Author

Thanks Jonathan, This works!