For instance in a form, you could use a controlsource for a control with a formula like this:
[tt]=txtCtrl1 & " " & txtCtrl2 & " " & txtCtrl3[/tt]
This should concatenate the contents of three controls named txtCtrl1... into one string with a space between. This should also work in a report.
Another way, is to use some relevant event of the form to perform the concatenation (here without space), for instance the forms on current event, the after update event of some of the involved controls, in the event procedure (hit the button with three dot's on the right of the event property to enter VBE) enter something like this.
[tt]Me!txtResult = Me!txtCtrl1 & Me!txtCtrl2 & Me!txtCtrl3[/tt]
Replace txtCtrl1... with the names of your controls...
I see you're a new member, welcome to Tek-Tips.
Here's one of the faqs on how to get the most out of the membership faq181-2886
Good Luck!
Roy-Vidar