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

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Exclude string of values from load?

Hi,

I'm trying to exclude any client where the name is "Trendsight" from my load, but my statement doesn't seem to be working...

LOAD

          ClientName,

FROM

Data\Clients.qvd

(qvd) where ClientAccountName<>WildMatch(ClientAccountName, 'Trendsight.*');

Any thoughts?  The issue is that this client has multiple divisions that we treat as separate clients, so I need a string variable rather than manually excluding each client from the load.

1 Solution

Accepted Solutions
hic
Former Employee
Former Employee

LOAD ClientName,

FROM Data\Clients.qvd (qvd) where not WildMatch(ClientAccountName, 'Trendsight*');

HIC

View solution in original post

3 Replies
hic
Former Employee
Former Employee

LOAD ClientName,

FROM Data\Clients.qvd (qvd) where not WildMatch(ClientAccountName, 'Trendsight*');

HIC

Not applicable
Author

LOAD

ClientName

FROM Data\Clients.qvd (qvd)

where NOT (ClientAccountName like 'Trendsight*')

;

Not applicable
Author

Ahhh, that's it.  Worked perfectly, thank you!