A
Andreas
I have been searching for something that makes it possible for the users of
my database to write different searc criterias in my forms. For example; if
they are searching by adress they now have to write the exact adress to find
anything. I would like it to be possible for the users to use the * symbol to
search for all adresses starting on e.g. via marc. I.e. to have the same
search function as in access. Is this possible. I found something similar
(see below) but the problem there is that the user cannot choose whether they
want to have all adresses when writing via marc or just the adresses that is
exactly via marc.
Thanks!
Andreas
Check into using the "Like" qualifier with wildcard symbols. In query
design mode, the select criterion would look similar to:
Like [enter search term] & "*"
In your example, entering "user1" would return
user1
user11
user12345
...
(anything starting with "user1")
my database to write different searc criterias in my forms. For example; if
they are searching by adress they now have to write the exact adress to find
anything. I would like it to be possible for the users to use the * symbol to
search for all adresses starting on e.g. via marc. I.e. to have the same
search function as in access. Is this possible. I found something similar
(see below) but the problem there is that the user cannot choose whether they
want to have all adresses when writing via marc or just the adresses that is
exactly via marc.
Thanks!
Andreas
Check into using the "Like" qualifier with wildcard symbols. In query
design mode, the select criterion would look similar to:
Like [enter search term] & "*"
In your example, entering "user1" would return
user1
user11
user12345
...
(anything starting with "user1")