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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
kavieweg
Partner - Creator
Partner - Creator

Wildmatch during Data Load

Hi Guys,

I have a table and only will load specific Data.

 

ATABC123456789 - do not load

DE123456789969 - do not load

DEABC123456789 - load: any DE [A-Z] *

DEBGW38393838 - load: any DE [A-Z] *

Can anyone help me with the WildMatch ?

 

Regards

Mathias

5 Replies
tresB
Champion III
Champion III

Try like:

Where Left(Field,2)='DE' and FindOneof(Mid(Field,3,1), 'ABCD...Z')

 

Fill up the dots and try.

kavieweg
Partner - Creator
Partner - Creator
Author

Hi,

i will try this, but is there no option with Wildmatch? Can I als say "any Character" instead of ABC....Z ?

tresB
Champion III
Champion III

'any character' - is '*' . But you perhaps need 'any alphabet' instead, and that can't be referred directly.

kavieweg
Partner - Creator
Partner - Creator
Author

Yes, any alphabet or no numbers 🙂

tm_burgers
Creator III
Creator III

could also try:

 

the cases where the character in question is a letter would return null, whereas if it is a number it will be not null?

 

Where Left(Field,2)='DE' and ISNULL(Mid(Field,3,1)*2)