combine fields

  • Thread starter Thread starter rml
  • Start date Start date
R

rml

How can I display three separate fields together so that they look like this:

Field1

Field2

Field3

After field1, I would like it to return and have a blank line between and so
on.

Thanks.
 
How can I display three separate fields together so that they look like this:

Field1

Field2

Field3

After field1, I would like it to return and have a blank line between and so
on.

Thanks.

Use an Unbound text control.
Set it's Control source to:
=[Field1] & chr(13) & chr(10) & chr(13) & chr(10) & [Field2] & chr(13)
& chr(10) & chr(13) & chr(10) & [Field3] & etc....
 

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