concatination

  • Thread starter Thread starter Richard
  • Start date Start date
R

Richard

I'm having difficulty concatinating two fields in a
table. Any Ideas? I just want to combine the LastName
field and FirstName field.
 
For the format Last Name, First Name do this:

=[LastName] & ", " & [FirstName]

For the format First Name Last Name do this:

= [FirstName] & " " & [LastName]
 
select LastName & ", " & FirstName AS FullName FROM YourTable
Hint: Use Shift+F2 in the QBE (desgin View) and Type:
FullName:LastName & ", " & FirstName

HTH

Pieter
 

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