Combining Information

B

Brian T

Hello,

I am looking to combine information from several parts of a record. I want
to take the initials for a persons name and add an ID number.
Example:
Last Name First Name MI ID #
--------------------------------------------
Doe John A 1234

Output: JAD1234

Thanks
 
K

KARL DEWEY

Try this --
Output: Left([Last Name], 1) & Left([First Name], 1) & [MI] & [ID #]
 
J

Jerry Whittle

Put something like below in a field for a query based on the query.

TheOutput: Left([First Name], 1) & Left([MI], 1) & Left([Last Name], 1) &
[ID #])
 

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

Top