How to combine text from 3 columns?

N

Natalie

I would like to combine 3 columns into one. The columns are First Name
[FirstNm], Last Name [LastNm] and Date of Birth [DOB]. I need the first 2
letters of the first name, the first 3 letters of the last name and the month
and day of date of birth. I started using the Left Function.
Left([FirstNm],2) but I don't know how to continue.
 
R

Rick B

Where are you doing this? I will assume in a query.

NewField: Left([FirstNm],2) & Left([LastNm],3) & Format([DOB],"MMDD")
 
X

xRoachx

Hi Natalie, are you trying to create a 4th column or only display this? As a
recommendation, I would only display it. Try this:

Left([FirstNm], 2]) & Left([LastNm], 3) & Format([DOB],"mm\/dd")
 

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