Field length in reports

  • Thread starter Thread starter Carlton
  • Start date Start date
C

Carlton

I am trying to print a bibiography using a report based
on a query. Is there any way I can automatically format
the field length so that the next field is adjacent?

For instance, journal articles vary in length, but I need
the date (the next field) to appear right next to it.

Thanks in anticipation.

Carlton.
 
Carlton said:
I am trying to print a bibiography using a report based
on a query. Is there any way I can automatically format
the field length so that the next field is adjacent?

For instance, journal articles vary in length, but I need
the date (the next field) to appear right next to it.

Use a TextBox with a ControlSource expression of...

=[JournalArticleField] & " " & [DateField]
 
Back
Top