Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi everyone,
Here’s my scenario:
My question: How do I allow the user to type in the identification numbers for all 12 of the partners they want to see information for?
I’ve tried using the Match() function in the Advanced Search of the list box, but that is not a viable solution for a user.
Any suggestions would be appreciated.
Thanks!
Scott
Hi Scott,
Try the following format when searching in the list box:
(search1|search2|search3)
Example:
Remember to remove the wildcards (*) if they exist.
If you type this in a search it should work.
Thanks,
Camile
Hi Scott,
Try the following format when searching in the list box:
(search1|search2|search3)
Example:
Remember to remove the wildcards (*) if they exist.
If you type this in a search it should work.
Thanks,
Camile
check with this thread Missing Manual - GetFieldSelections() + Bonus Example
Vikas
Use a Select -> Select in Field button action.
Type in your field name and as search string whatever you want to select for example: (selection1|Selection2) the search string needs the ()
Thanks, Camile! That worked!
I also discovered a couple things regarding selecting from a list box that I thought I’d pass on.
Suppose you want to select 2 customers from the List Box for “Company Name”
When you want to search for a string with >1 word like, “A Company’s Name”, you should enclose the entire string in
double quotes:
Ex. (“A Company’s Name”|”Another Company’s Name”)
If however, you don’t know the full string you’re searching for, you can use wildcards:
Ex. (“A Company’s *”|”Another Company’s *”)
Hope this helps others.
Thanks again!
Scott