combine valu es from 2 fields

  • Thread starter Thread starter JN
  • Start date Start date
J

JN

Hi.
I would like to combine the field values from Address 1 with those of
Address 2.
I am familiar with queries but not exactly sure how to go about this.
Can anyone please tell me how.
JB
 
JN said:
Hi.
I would like to combine the field values from Address 1 with those of
Address 2.
I am familiar with queries but not exactly sure how to go about this.
Can anyone please tell me how.
JB

Add a new column in the query designer...

Address: [Address 1] & " " & [Address 2]

(or if you prefer a line feed between them)...

Address: [Address 1] & Chr(13) & Chr(10) & [Address 2]
 
JN said:
Hi.
I would like to combine the field values from Address 1 with those of
Address 2.
I am familiar with queries but not exactly sure how to go about this.
Can anyone please tell me how.

SELECT Address1 & " " & Address2 AS Adrs
FROM Addresses
 

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