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

Announcements
Qlik GA: Multivariate Time Series in Qlik Predict: Get Details
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

String Function to Exclude

numname
1Abc1234
2cghtry
3rxyqwret
4XXXqwwu
5XXXtyyy
6XXX1234

Hi,

I have a resident table which has a column name.I need to create a new table excluding name that starts with XXX.How to do it?

New table

Name
Abc1234
cghtry
rxyqwret

Thanks...

1 Solution

Accepted Solutions
Not applicable
Author

Hi Pooja,

try this

load

     num,

     name

resident table1 where not wildmatch(name,'XXX*');

this will give you all the names which does not start with XXX;

table1 here is your original table, which you have already loaded. change this to your table name.

let me know, if you face any issue.

........

regards,

Ashutosh

View solution in original post

2 Replies
Not applicable
Author

Hi Pooja,

try this

load

     num,

     name

resident table1 where not wildmatch(name,'XXX*');

this will give you all the names which does not start with XXX;

table1 here is your original table, which you have already loaded. change this to your table name.

let me know, if you face any issue.

........

regards,

Ashutosh

Not applicable
Author

Thank You so much Ashutosh..It worked.