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

Filter in Listbox

Hi guys,

I have a listbox that contain hundreds of service code,

However in this particular report, I only want the user to choose 20 service code.

It will not be user friendly for the user to select the hundreds of service code when there is only 20 service code that are valid

Therefore my qn is whether is there any way i can filter the listbox?

Thanks

1 Solution

Accepted Solutions
Anonymous
Not applicable

hi

   Check listbox expresion.  go through attach file

View solution in original post

3 Replies
Sokkorn
Master
Master

Hi,

The answer is "Yes for Sure". We can limit item in list box. Here is some clue by using expression, something like =Aggr(Only({1<Field = {1,2,3}>} Field) Field)

If you have some sample data that quite easy to figure out.

Regards,

Sokkorn

Anonymous
Not applicable

hi

   Check listbox expresion.  go through attach file

Sokkorn
Master
Master

See sample

[Data]:

LOAD * Inline [

Cliente

1,

2,

3,

4];

Create a list box with expression =Aggr(Only({1<Cliente = {1,2}>} Cliente),Cliente) -> will see only 1 and 2

Regards,

Sokkorn