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: 
davidthorpester
Contributor
Contributor

Load data only where field contains specific text

Hi There,

I am trying to load some data into QV where the field has:

The first 4 characters are a letter (a-z) AND the fifth character is a -

How would I write a WHERE statement in QV to extract this?

Thanks very much, David

Labels (1)
1 Solution

Accepted Solutions
sunny_talwar

May be this

Where Len(KeepChar(Left(Lower(FieldName), 4), 'abcdefghijklmnopqrstuvwxyz')) = 4 and Mid(FieldName, 5, 1) = '-';

View solution in original post

2 Replies
sunny_talwar

May be this

Where Len(KeepChar(Left(Lower(FieldName), 4), 'abcdefghijklmnopqrstuvwxyz')) = 4 and Mid(FieldName, 5, 1) = '-';
davidthorpester
Contributor
Contributor
Author

Thank you so much Sunny that worked perfectly!

Have a great day.