Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

where [VenteLigne. Description Article]<>RAN*;

where [VenteLigne. Description Article]<>RAN*;

Je veux ne pas afficher les articles qui commence par RAN  ( dans la close where du script)

1 Solution

Accepted Solutions
alexandros17
Partner - Champion III
Partner - Champion III

With SQL (SELECT) it is: ... where [VenteLigne. Description Article]<>'RAN*';

with load is : ... where wildmatch([VenteLigne. Description Article],'RAN*')=0;

let me know

View solution in original post

2 Replies
alexandros17
Partner - Champion III
Partner - Champion III

With SQL (SELECT) it is: ... where [VenteLigne. Description Article]<>'RAN*';

with load is : ... where wildmatch([VenteLigne. Description Article],'RAN*')=0;

let me know

tresesco
MVP
MVP

where Not WildMatch([VenteLigne. Description Article] , 'RAN*')