concatenation

G

Guest

I have a field called UserName in a query, this is in the form of
Firstname.Surname, i have concatenated my FirstName and LastName together by
using:

UserName: [tbl_StaffDetails].[FirstName]&[tbl_StaffDetails].[LastName]

How do i get the . (dot) inbetween the firstname and lastname?

Any help again wopuld be appreciated

Martin
 
R

Rick Brandt

Martin said:
I have a field called UserName in a query, this is in the form of
Firstname.Surname, i have concatenated my FirstName and LastName
together by using:

UserName: [tbl_StaffDetails].[FirstName]&[tbl_StaffDetails].[LastName]

How do i get the . (dot) inbetween the firstname and lastname?

Any help again wopuld be appreciated

Martin

UserName: [tbl_StaffDetails].[FirstName] & "." & [tbl_StaffDetails].[LastName]
 
G

Guest

Thanks for all the help guys, worked great!

Rick Brandt said:
Martin said:
I have a field called UserName in a query, this is in the form of
Firstname.Surname, i have concatenated my FirstName and LastName
together by using:

UserName: [tbl_StaffDetails].[FirstName]&[tbl_StaffDetails].[LastName]

How do i get the . (dot) inbetween the firstname and lastname?

Any help again wopuld be appreciated

Martin

UserName: [tbl_StaffDetails].[FirstName] & "." & [tbl_StaffDetails].[LastName]
 

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