Multiple Fields in a Textbox

R

rye1982

I want to add several fields into a textbox, similar to a Mail Merge effect
in Word.

How can do this?

E.g. I have city and state fields and want a text where it shows the city
(from the field), adds a comma automatically, and adds the state (from the
field)

Thanks very much.
 
J

Jeff Boyce

Use a query to concatenate the fields. Your city/state/postal code might
look something like:

CSZ: [City] & ", " & [State] & " " & [PostalCode]

as a new "field" in a query.

Regards

Jeff Boyce
Microsoft Office/Access MVP
 

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

Similar Threads

Auto Fill 0
dependent combo boxes 1
Combo box help! 3
Using DLookup on Form 3
Combo Box Lookup ??? 1
Textbox contents 2
Suppress comma in calculated field given Null 1
Syntex Error 1

Top