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: 
mahendragaur
Creator
Creator

Listbox Filter

Hello,

I want to show list box (Name) values based on Flag column values like if Flag is 0 then Name corresponding to Flag=0 should only show in listbox. like -

   

NameFlag
Mahendra1
Rajiv0
Pranav0
Vaibhav1

List box should show only -

   

Name
Rajiv
Pranav
3 Replies
Anonymous
Not applicable

like this??

Anonymous
Not applicable

hi

Try this.

If(Flag= 0, Name)

awhitfield
Partner - Champion
Partner - Champion

In the 'Field' select expression and use this:

=If(Flag = 0, Name)

HTH

Andy