Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us in Bucharest on Sept 18th for Qlik's AI Reality Tour! Register 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!!!!!!!!