Reports

A

Anit

Would I be able to display data from 2 or more fields into one text box in
reports?
I have got multiple fields, however wish to combine the data in all of these
fields and display in one text box in my report?
 
A

Allen Browne

Set the Control Source of a text box to an expression like this:
=[FirstName] & " " & [Surname]

Make sure the text box's Name property is not the same as one of the fields
(e.g. it can't be called FirstName or Surname in the example above.)

In some cases, you will find that it doesn't work unless you put (hidden)
text boxes for these fields on the report as well.
 
A

Allen Browne

Set the Control Source of a text box to an expression like this:
=[FirstName] & " " & [Surname]

Make sure the text box's Name property is not the same as one of the fields
(e.g. it can't be called FirstName or Surname in the example above.)

In some cases, you will find that it doesn't work unless you put (hidden)
text boxes for these fields on the report as well.
 

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