Skip to main content
Announcements
Qlik Introduces a New Era of Visualization! READ ALL ABOUT IT
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

How to exclude sth in straight table's demenision?

Hello Everyone,

IF the datasource has several names in straight table:

AA

AB

CC

CD

BB

EE

How do I exclude the names with first letter "A"?

CC

CD

BB

EE

I only know that "like" can be used in the expression, such as like ‘A*’,but how to include 'A*'?

1 Solution

Accepted Solutions
bbi_mba_76
Partner - Specialist
Partner - Specialist

Hi,

I don't know if I understand well, but you could use the wildmatch functions:

if(wildmatch(YourField,'A*')<1,YourField)

View solution in original post

4 Replies
bbi_mba_76
Partner - Specialist
Partner - Specialist

Hi,

I don't know if I understand well, but you could use the wildmatch functions:

if(wildmatch(YourField,'A*')<1,YourField)

Not applicable
Author

Hi,

Like this

Table:

Load

YourField

From YourSource

Where WildMatch(YourField,'A*') <=0;

anbu1984
Master III
Master III

If(Left(Field,1) <> 'A',Field)

Or

If(Not(Field Like 'A*'),Field)

Not applicable
Author

thx a lot.

Problem Solved.