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

Announcements
Join us in Toronto Sept 9th for Qlik's AI Reality Tour! Register Now
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

scripting/alternate state

Hi,

I have two filters, one in default state and other is in state1. is it possible to get same value selected in both the filters in different  state based on some expression.

example :

Filter1: Source in default state

Filter 2: [Source 2] in state State1

if a user select some value in Source listbox which is in default state with some expression or trigger same value must be selected in Source 2 listbox which is in State1.

Thank in advance

-Priyanka

13 Replies
Not applicable
Author

Hi Sunny,

i have implemented above solution and it is working fine for single word eg if filter1 has value "Book" it is working, but if it has value "Book Name" or "Book_Name" i.e. two words its not working

do you have any idea how to resolve it

sunny_talwar

Change the expression from

='(' & Concat(DISTINCT Chr(32) & Source & Chr(32), '|') & ')'

to

='(' & Concat(DISTINCT Chr(34) & Source & Chr(34), '|') & ')'

Not applicable
Author

Thank you so much, it is working

Do you have some document(s) which i can refer to understand chr() function with different values

Thanks in advance