combine fields

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.
 
F

fredg

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....
 
Top