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

Announcements
Only at Qlik Connect! Guest keynote Jesse Cole shares his secrets for daring to be different. Learn More!
cancel
Showing results for 
Search instead for 
Did you mean: 
jim_chan
Specialist
Specialist

loading script - how to exclude data that start with "A..."

hi guys,

just a simple question. i have a field, which have data such as A10001, 120111. i need to get rid/exclude of those A* data for that particular field when i am doing the loading script.  how should i write...?

Load

ID

Where Not MixMatch(ID, 'A*');

will this work?????

rgds

jim

1 Solution

Accepted Solutions
vishsaggi
Champion III
Champion III

May be try this:

Load

ID

Where Not WildMatch(ID, 'A*');

OR

Load

ID

Where Num(ID);

View solution in original post

2 Replies
vishsaggi
Champion III
Champion III

May be try this:

Load

ID

Where Not WildMatch(ID, 'A*');

OR

Load

ID

Where Num(ID);

jim_chan
Specialist
Specialist
Author

Hi Vish,

i ahve used this Where Not WildMatch(ID, 'A*');

and it work.

thank you.