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

Announcements
ALERT: QlikView server communication interruptions following Microsoft Windows Domain Controller security updates
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)

Labels (1)
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

tresB
Champion III
Champion III

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