Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Here is the list box and I need to display only the "F/A" data's other data values shouldn't display. I need to restrict this in script editor. Can somebody help me?
Hi Murali,
use wildmatch in your script to reduce down your data.
Where wildmatch([Field Name], '*F/A*')
Hope that helps
Joe
Hi,
Try with wildmatch() and special character *
where wildmatch([Field Name], '*F/A*')
Regards
Hi,
Try this:
Where match(Your_Field,'*F/A*') ;
Thanks,
AS
Use one of the match(wild match is prefered) with where condition.