Skip to main content
Announcements
See what Drew Clarke has to say about the Qlik Talend Cloud launch! READ THE BLOG
cancel
Showing results for 
Search instead for 
Did you mean: 
cbaqir
Specialist II
Specialist II

Suppress Blank Values in List Box

How can I suppress blank values in a list box?

1 Solution

Accepted Solutions
Anonymous
Not applicable

use expression in list box and use this expression

if (field <> '',field)

hope it helps

Raj

View solution in original post

3 Replies
Anonymous
Not applicable

use expression in list box and use this expression

if (field <> '',field)

hope it helps

Raj

MarcoWedel

If(Len(Trim(Field)),Field)

vardhancse
Specialist III
Specialist III

Yes, in list box take expression instead of direct field.

Expression:

if(field<> ' ',field)