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

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
abc_18
Creator II
Creator II

How to exclude a value from a field

Hi,

How to exclude the values starting with '++' from below dimension field?

Capture.PNG

 

Thanks

1 Solution

Accepted Solutions
tresesco
MVP
MVP

My be using wildmatch(), like:

Load
Field
From <> where not wildmatch(Field, '++*');

View solution in original post

2 Replies
tresesco
MVP
MVP

My be using wildmatch(), like:

Load
Field
From <> where not wildmatch(Field, '++*');
abc_18
Creator II
Creator II
Author

Hi Tresesco,

 

Thank you very much, it works as expected.

Regards