Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
qlikmpate0
Creator II
Creator II

selections in a list box

I hav ebeen asked to list only two selection out of several in a list box, has anyone done this ie if selection a,b,c,d,e is available, I only want to show a,c and d?

Has anyone done this if yes please can you guide me on how.

1 Solution

Accepted Solutions
robert_mika
Master III
Master III

List box-->Field-->Expression

=if(match(Staff,'A','B','C'),Staff)

02-Apr-15 12-43-55 PM.jpg

02-Apr-15 12-43-11 PM.jpg

View solution in original post

6 Replies
robert_mika
Master III
Master III

List box-->Field-->Expression

=if(match(Staff,'A','B','C'),Staff)

02-Apr-15 12-43-55 PM.jpg

02-Apr-15 12-43-11 PM.jpg

MK_QSL
MVP
MVP

Create a list box by using expression

IF(Match(YourFieldName,'a','c','d'),YourFieldName)

amit_saini
Master III
Master III

Mina,

See attachment and follow the concept in your case.

Thanks,
AS

buzzy996
Master II
Master II

might be i'm wrong here,are u looking for alternatives in list box instituted of showing all?

exmple: at present ur having: a,b,c,d,e

               expecting:a,c,e?

ashwanin
Specialist
Specialist

Create List box

and in expression add below to see A,C and D .

=if(match([Field] 'A','C','D'),[Field])

qlikmpate0
Creator II
Creator II
Author

Thanks works perfect