How do I concantenate 2 fields

  • Thread starter Thread starter Floridagal
  • Start date Start date
F

Floridagal

I am querying a table with the fields
1. First Name (John)
2. Last Name (Smith)

I want to combine the fields (John Smith), what function
do I use. In Excel, I use Concatenate, I don't see it in
Access.

TIA!
 
If you are using an unbound textbox on a form or report to
display the result, the contol source for the textbox
would be:

=[First Name] & " " & [Last Name]
 

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