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: 
nihhalmca
Specialist II
Specialist II

How to exclude value from field in Listbox

Hi All,

How to exclude value from field in Listbox.

Ex: Field has like A,B,C,D.....Z, i want to exclude 'D' value from field and display in the listbox.

Thanks,

Nihhal.

1 Solution

Accepted Solutions
lironbaram
Partner - Master III
Partner - Master III

hi

you can use an expression in the list box

if(Field<>'D',Field)

View solution in original post

3 Replies
lironbaram
Partner - Master III
Partner - Master III

hi

you can use an expression in the list box

if(Field<>'D',Field)

MK_QSL
MVP
MVP

Use below expression to create list box

IF(Not Match(FieldName,'D'),FieldName)

nihhalmca
Specialist II
Specialist II
Author

Thank you.

Same did not work for me earlier 🙂