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

3 Replies
tresesco
MVP
MVP

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

     ...;