Format Address

  • Thread starter turks67 via AccessMonster.com
  • Start date
T

turks67 via AccessMonster.com

How can I format this ([account name] & ", " & [customer street address] & ",
" & [city] & " , " & [state] & " , " & [zip code]) in a query to show on a
Form or Report to look like this below.

Account Name
Customer Streer Address
City state Zip Code
 
A

Allen Browne

Try an expression like this:
=[account name] + Chr(13) + Chr(10) & [customer street address] + Chr(13) +
Chr(10) & [city] & " " & [state] & " " & [zip code]
 
T

turks67 via AccessMonster.com

Thank you.

Allen said:
Try an expression like this:
=[account name] + Chr(13) + Chr(10) & [customer street address] + Chr(13) +
Chr(10) & [city] & " " & [state] & " " & [zip code]
How can I format this ([account name] & ", " & [customer street address]
& ",
[quoted text clipped - 4 lines]
Customer Streer Address
City state Zip Code
 

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