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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Comment utiliser la fonction IN dans un script qlikview?

Bonjour,

Je rencontre un problème dans mon script avec la condion where id in (.....), j'ai une erreur de script scorie après instruction.

le script est le suivant:

LOAD

  ProjectName,

   IdUserKadrige,

FROM

[$(vFileUsers)]

(txt, codepage is 1252, embedded labels, delimiter is ';')

Where IdUserKadrige  IN ('119_','120_','121_','122_','123_','124_','126_','127_','128_') ;

Pouvez vous m'aider a trouver la solution?

Merci

1 Solution

Accepted Solutions
Colin-Albert
Partner - Champion
Partner - Champion

Try using match

Where Match( IdUserKadrige, '119_','120_','121_','122_','123_','124_','126_','127_','128_') ;

View solution in original post

2 Replies
Colin-Albert
Partner - Champion
Partner - Champion

Try using match

Where Match( IdUserKadrige, '119_','120_','121_','122_','123_','124_','126_','127_','128_') ;

Anonymous
Not applicable
Author

Bonjour Colin Albert,

Merci pour ta réponse. J'ai les bonnes valeur comme souhaité.