Skip to main content
Announcements
Have questions about Qlik Connect? Join us live on April 10th, at 11 AM ET: SIGN UP NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
jose_vargas
Creator
Creator

Listbox with expression select another listbox

Hi Community.

Im work whit listboxs and have the next question.

1 Listbox is "Servicio", it have all the values from my flied "tipo2"

Another listbox is "Empresa", in this listbox i used and expression:  "=if(WildMatch(Tipo2,'*PEX*','*SMART*'),'EMP1X','EMP2L')"

The values show correctly, 

image.png

The problem is when I select  the value "EMP1X" from the listbox "empresa", the listbox "servicio" shows selected some values. How can I do to show this values "Servicio" unselected, this values just have to show enable, not selected.

image.png

Thanks.

Jose

1 Solution

Accepted Solutions
sunny_talwar

Why don't you create Empresa in the script?

If(WildMatch(Tipo2,'*PEX*', '*SMART*'), 'EMP1X', 'EMP2L') as Empresa

View solution in original post

2 Replies
sunny_talwar

Why don't you create Empresa in the script?

If(WildMatch(Tipo2,'*PEX*', '*SMART*'), 'EMP1X', 'EMP2L') as Empresa
jose_vargas
Creator
Creator
Author

Thanks.

Its Works!!!!!!!!