Discussion Board for collaboration related to QlikView App Development.
Hello,
I have a filter section that acts as a high level filter and then another filter section specific to a table (built using an island table)
How do i pass list box selections from the high level filter into a multi box built using the island table.
I have attached the qvw file.
Your help is appreciated.
Did it for Product_Level1 in your attached qvw. If you select anything in Product_Level1, it will make the same selection in Product_Level1_F1.
PFA
Best,
Sunny
You can use triggers to do that
Did it for Product_Level1 in your attached qvw. If you select anything in Product_Level1, it will make the same selection in Product_Level1_F1.
PFA
Best,
Sunny
Thanks sunindia, your posts are helping me a lot in learning QV concepts!
One thing I observed while trying to understand the search string expression that the selected value for Product1_F1 is repeating in selection window specially when first value is selected. I assumed the 'I' concatenation you have used to handle multiple selection in high level filter. I am Pasting below the current selection window I could observe in the qvw shared by you. More insights from you will be helpful. Thanks in advance!
just add DISTINCT in the trigger expression
Forgot to put DISTINCT within the concat function
Try this:
='(' & Concat(DISTINCT Product_Level1, '|') & ')'
Digvijay Singh I am glad I am able to inspire you to learn new things in QlikView. Not so long ago, I was in the similar boat where I was more of an observant, but over time as I learnt more and more from the community I started sharing and contributing to the community also.
I am sure, over time you will do the same thing by sharing your knowledge with others
Best,
Sunny
Right, its fine now. Thanks!