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

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
cancel
Showing results for 
Search instead for 
Did you mean: 
Mahamed_Qlik
Specialist
Specialist

Load Basic

Hi

 

I have field as below :

A1
A2
A3
A5 ......till A2000

 

I want to apply filter to load only less than A150.

Labels (1)
2 Replies
rubenmarin

Hi, if all the values has a letter and a number you can use something like:

LOAD * from/resident... Where Mid(FieldName,2)<150;

anat
Master
Master

if you have other letters then go with purgechar like below:

LOAD * Where PurgeChar(ID,'ABCDEFGHIJKLMNOPQRSTUVWXYZ')>5;
LOAD * Inline [
ID
A1
A2
A3
A4
A10
A11
A12


];