How can I dived ! field into 2?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Subject: How do I combine the contents of two fields into one in access?
 
I send this message before I had finnished writing it. So I send another one
which is the right one. Sorry about this mistake.
 
Kristjan said:
Subject: How do I combine the contents of two fields into one in
access?

In query:

NewField: [Field1] & " " & [Field2]

Acki
 
NewFieldName: ([Field1]) & ([Field2])

or

NewFieldName: ([Field1]) & " " & ([Field2])

The second option simply puts a space between both fields.

-Tony
 

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