I have four fields I want in my report however I want them to self space....
Example (If I just add them to the report)
151 Test Message JPrater 10/15/05
151 Enter Message Wedwards 10/15/05
I want
151 Test Message JPrater 10/15/05
151 Enter Message Wedwards 10/15/05
Thanks in advance
( I pretty sure this is an easy question, I just can't find the answer)
> I have four fields I want in my report however I want them to self space....
>
[quoted text clipped - 10 lines]
> Thanks in advance
> ( I pretty sure this is an easy question, I just can't find the answer)
Add an unbound control to the report.
Set it's control source to:
=[Field1] & " " & [MessageField] & " " & [NameField] & " " &
[DateField]
Make sure the name of this control is not the same as the name of any
field used in the expression.

Signature
Fred
Please respond only to this newsgroup.
I do not reply to personal e-mail
Ms Jen - 26 Oct 2005 17:59 GMT
Dah kinda of like the Page x of y.... Your a gem
> > I have four fields I want in my report however I want them to self space....
> >
[quoted text clipped - 18 lines]
> Make sure the name of this control is not the same as the name of any
> field used in the expression.