Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

List box and Multibox options

Hi,

Is it possible to show few data only on Listbox and Multibox.

Ex:

Dim1

A

B

C

D

E

So, I want to display A,B,C or Top 5 or last 5 like that.

Thank you.

1 Solution

Accepted Solutions
its_anandrjs

Hi,

You can use conditional statements in the list box for any selected values you can write expression

Ex:-

=IF(Match(Dim1,'A','B','C'),Dim1)

Or you can use your choice expressions.

Regards

Anand

View solution in original post

2 Replies
its_anandrjs

Hi,

You can use conditional statements in the list box for any selected values you can write expression

Ex:-

=IF(Match(Dim1,'A','B','C'),Dim1)

Or you can use your choice expressions.

Regards

Anand

Not applicable
Author

Thanks Anand, I got it.