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

Trigger select fields based on multiple variables

Hi there!

I have various variables e.g. $(vA), $(vB), $(vC) which can be set by the user.

I want to trigger a field selection on the field e.g. City so when the Tab is opened the values of the variables above will be selected.

I created a trigger in the tab. Interestingly it works for

='('&vA&')'

but i can't get a selection based on MORE than one var like

='('&vA&')'&' '&'('&vB&')'&' '&'('&vC&')'&'

Any idea?

BR

Andreas

1 Solution

Accepted Solutions
MayilVahanan

HI,

     Try this,

     ='(*'&vA&'*|*'&vB&'*|*'&vC&'*)'

Hope it helps

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.

View solution in original post

2 Replies
MayilVahanan

HI,

     Try this,

     ='(*'&vA&'*|*'&vB&'*|*'&vC&'*)'

Hope it helps

Thanks & Regards, Mayil Vahanan R
Please close the thread by marking correct answer & give likes if you like the post.
Anonymous
Not applicable
Author

Works like a charm