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: 
NavinReddy
Creator II
Creator II

List Box

Dear All,

i have a two list boxes

if i select one value in first list box

it could show only based on filters ,its highliting the values it won't filtering

how can i do this is there any expression

i need to show only highlited values

please find the image

Thanks In Avance

Niranjan

Filters.png

11 Replies
NavinReddy
Creator II
Creator II
Author

Hi Chirajeevi ,

Im using personal edition will you please tell me the process

Regards,

Niranjan

chiru_thota
Specialist
Specialist

Step1: Define a variable

Variable1=Concat(CountryCode,chr(39)&','&chr(39))

Step 2: have below conditional expression in second list box.

=if(isnull(GetFieldSelections(CountryCode)),CountryName,if(match(CountryCode,'$(Variable1)'),CountryName))

Here I am assuming CountryCode is your first dimension and CountryName is second dimension