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: 
Not applicable

length function

Hi,

Does anyone know how to use a length function i.e. only bring back data from a certain field if the characters for example are greater than 5?

Any help will be welcomed?

Thanks Naz

Labels (1)
3 Replies
tresB
Champion III
Champion III

where len(field)>5 ;

anbu1984
Master III
Master III

Where Len(Trim(YourField)) > 5

maxgro
MVP
MVP

exclude row --> tresesco

change field value (or set null) --> below

load

     ....

     if(len(field)>5, field) as field,           

     if(len(field)>5, field, '>5') as field1,     

     ....

from

     ...;