Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Dear Experts,
I have a list box contain some names, whereas i want to show only few selected names.
Ex:
Name
ABC
XYZ
STR
VWX
SDR
I want to show display a list box without XYZ and SDR, is there any way like writing a expression on sort tab or any other way.
Please suggest.
Regards,
Raju Salmon
For writing an expression u can go to list box properties,
on general tab field----> expression --bottom most value of list box
u can write an expression in the list box
if(name<>'XYZ',if(name<>'SDR'),name)
Thanks and Regards
Khushboo
For writing an expression u can go to list box properties,
on general tab field----> expression --bottom most value of list box
make a listbox with the express (at the bottom)
=if(not Match(Name,'XYZ','SDR'), Name)
use the follwing expression in List box as Expression
=if(not Match(FieldName,'Value1', 'Val2'), FieldName)
Use this
=If(not Match(Name,'XYZ','SDR'),Name)