Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi Community
I have a 8 Distinct Calculated List Boxes.
When I use Filters Suppose I Select the Name ABCD, the Associated and Possible data is Filtering out in the 5 List Boxes
and the remaining 3 List Boxes has no data associated with that selection.
What I need is to Hide those 3 non-associated List Boxes.
Is there any workaround???
Regards
Aviral Nag
you can do it with a button, define a variable and set the conditional visibility property for the list box (i.e. myVar=1)
then with the button trigger the value of variable
I would set the list boxes to be conditionally shown when GetPossibleCount(appropriate listbox)> 0
Hi,
Just make remaining 3 list boxes conditional and give the condition as:
GetSelectedCount([Your Fieldname]) >0
Replace "Your Field name" with your actual field name. You can use it for multiple fields.
Hope this helps!
Edit :
Sorry, I read your requirement incorrectly. It should be
GetSelectedCount([Your Fieldname]) <1
Hiii Nag
Simply use getpossiblecount(particular listbox)=1
Thanks All for the Quick Reply Guys.
Can anyone provide me the sample qvw.
Hi,
Might be something like attached.
Thanks Alessandro for your reply.
I want to hide List Boxes if there is no data availability. So, for this button doesn't don't work.
I want to do this by doing GetPossiblecount() . Do you have any solution for it.
Hi Shyamal thanks for the reply
Please see the Attchment - what I actually want???
Hello,
Find the attachment.
I have used condition which works as per you requirement where sum field is hidden if no data.