Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
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 (5)
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.