Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
i want to select those name in list box whose Frequency <> 1.
please see the attached sample QVW file for referance.
Thanks
Raul
Create a button with a select in field action,
Physician
as field
an as search string
='=count(Physician)>1'
edit:
You can also just start typing an advanced search expression in the list box:
=count(Physician)>1
without using an additional button.
I tried but not working....could you please refer attached qvw n help me on this?
See attached.
Hi,
Try this in script,
if( ( Count(Physician) =1 ),Null(),Physician)
Or Else
Try this in Dim
If(GetSelectedCount(Physician)<> 1,Physician,0)
Regards,
Nirav Bhimani
Thanks...it helps..!!