Skip to main content
Announcements
Qlik Community Office Hours - Bring your Ideation questions- May 15th, 11 AM ET: REGISTER NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
hkg_qlik
Creator III
Creator III

List Box Properties

Hi,

Can anyone help me with List Box. I want to hide few status available in a particular field name. Is it possible to hide.

For eg: Registration Status

               Accepted

               Committed

               Dropped

Now i want user only to see Two status in the list box under Registration Status: Accepted & Committed.

Regards,

H

1 Solution

Accepted Solutions
jonathandienst
Partner - Champion III
Partner - Champion III

Hi

Use the following expression (select Expression at the bottom of the field name list) to the list box:

If([Registration Status] <> 'Dropped', [Registration Status])

Regards

Jonathan

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein

View solution in original post

2 Replies
jonathandienst
Partner - Champion III
Partner - Champion III

Hi

Use the following expression (select Expression at the bottom of the field name list) to the list box:

If([Registration Status] <> 'Dropped', [Registration Status])

Regards

Jonathan

Logic will get you from a to b. Imagination will take you everywhere. - A Einstein
Not applicable

Try using an expression:

if(match([Registration Status],'Accepted','Committed'),[Registration Status])

Edit: Above answer works too. Thats what happens when I open severa tabs and it takes me an answer to look at the question.