Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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.
LOAD ClientName,
FROM Data\Clients.qvd (qvd) where not WildMatch(ClientAccountName, 'Trendsight*');
HIC
LOAD ClientName,
FROM Data\Clients.qvd (qvd) where not WildMatch(ClientAccountName, 'Trendsight*');
HIC
LOAD
ClientName
FROM Data\Clients.qvd (qvd)
where NOT (ClientAccountName like 'Trendsight*')
;
Ahhh, that's it. Worked perfectly, thank you!