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

Announcements
Want to see what's currently in public preview? We've pulled it all together in one place. Check it out here
cancel
Showing results for 
Search instead for 
Did you mean: 
sandeepprasad_j
Creator
Creator

Designing Help???

Hi Experts,

Attaching you the example qvw

When i clikc on the country or the product ,its only taking the single selections .

I want mutiple selections and those mutiple selections to be displayed as sheets .

so,if i select both countries(US,UK),all the sheets related to UK,US to be displayed and as wel as for the products .

So please try to help me in this

Thanks a ton in advance.

Sandeep.

Labels (1)
1 Solution

Accepted Solutions
Not applicable

Hi,

  Try to use the below code  in the condition of the sheet .

=if( Index(Concat( GetFieldSelections(Country),'|'),'UK')>0 or Index(Concat(GetFieldSelections([Product]),'|'),'tea')>0,1,0)

Regards

Yuusuf

View solution in original post

2 Replies
Not applicable

Hi,

  Try to use the below code  in the condition of the sheet .

=if( Index(Concat( GetFieldSelections(Country),'|'),'UK')>0 or Index(Concat(GetFieldSelections([Product]),'|'),'tea')>0,1,0)

Regards

Yuusuf

sandeepprasad_j
Creator
Creator
Author

Hi Yusuf ,

Thanks for the quick reply ...

Sandeep.