How do I Query

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

Guest

I have only one field for name in my data base. How do I append table
inputting the first two or three alphabets of name field.
 
I have only one field for name in my data base. How do I append table
inputting the first two or three alphabets of name field.

Please explain what you mean here. "Append table"???

You certainly should NOT store the first two or three letters of the name
anywhere. You can create a Query based on the table with a calculated field

Initials: Left([namefield], 3)

to display the name; you can search for names using a Query with a criterion

LIKE [Enter start of name:] & "*"

to let the user type "joh" and find Johnson, Johannes, Johnston, etc.


John W. Vinson [MVP]
 

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