Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
i have two listboxes...i need second listbox to get display only if i made any selections in first list box,,,
Pls help me out and explain in detail
Say you have two fields 'field1' and 'field2' where 'field1' is used in a listbox.
You can put 'field2' in a listbox and then set Layout>Show...Conditional as:
GetSelectedCount(field1) <> 0
this is only true when field 1 has 1 or more explicit selections made (that is not just associated).
Regards,
Gordon
Hi,
For the second list box Properties>layout>show>conditional
if(getselectedcount([Feild1_])=0,0,1
Hi,
For the second list box Properties>layout>show>conditional
if(getselectedcount([Feild1_])=0,0,1
I'll just note that since 0 evaluates to false and anything non-zero evaluates to true, in situations like this, you don't need to compare to 0 or use an if(). This works just fine on its own:
getselectedcount(field1)