Partial Match Results in Query

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to set up a database to manage my boss's contact list. I set up a
parameter query to search by last name and return results. Yet, I want to be
able to type in a partial last name and return all the results that contain
say the latters "ca". How do I do it?
 
ALoecher said:
I am trying to set up a database to manage my boss's contact list. I
set up a parameter query to search by last name and return results.
Yet, I want to be able to type in a partial last name and return all
the results that contain say the latters "ca". How do I do it?

Something like:

SELECT Contacts.*
FROM Contacts
WHERE Contacts.LastName
Like "*" & [Enter last name, or part of it] & "*";
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top