Skip to main content
Announcements
Introducing Qlik Answers: A plug-and-play, Generative AI powered RAG solution. READ ALL ABOUT IT!
cancel
Showing results for 
Search instead for 
Did you mean: 
François
Contributor III
Contributor III

Load, how to exclude certain values ​​present in a field when loading data

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

Labels (2)
2 Solutions

Accepted Solutions
MarcoWedel

...

where not Match(ContactKey, '0030Y00000pzvJwQAI', '0031n00002Co5WdAAJ', '0032AnyOtherKey', '0033YetAnotherKey')

 

hope this helps

Marco

 

View solution in original post

François
Contributor III
Contributor III
Author

It's OK 

thank you

François

View solution in original post

2 Replies
MarcoWedel

...

where not Match(ContactKey, '0030Y00000pzvJwQAI', '0031n00002Co5WdAAJ', '0032AnyOtherKey', '0033YetAnotherKey')

 

hope this helps

Marco

 

François
Contributor III
Contributor III
Author

It's OK 

thank you

François