Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
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.
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
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
Hi Yusuf ,
Thanks for the quick reply ...
Sandeep.