Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Bonjour,
je cherche la syntaxe pour exclure certaines valeurs présentes dans un champ lors du chargement
J'ai essayé ceci sans succès.
SAT :
LOAD
ContactKey as KEY_REPONSE,
...
FROM
[..\DATA\Data_Extract_Enquete*.csv]
(txt, unicode, embedded labels, delimiter is ';', msq)
where ContactKey <>
'0030Y00000pzvJwQAI
,0031n00002Co5WdAAJ'
;
Merci
...
where not Match(ContactKey, '0030Y00000pzvJwQAI', '0031n00002Co5WdAAJ', '0032AnyOtherKey', '0033YetAnotherKey')
hope this helps
Marco
...
where not Match(ContactKey, '0030Y00000pzvJwQAI', '0031n00002Co5WdAAJ', '0032AnyOtherKey', '0033YetAnotherKey')
hope this helps
Marco
It's OK
thank you
François