new line/line break problem

  • Thread starter Thread starter Josh
  • Start date Start date
J

Josh

I'm using a text box in a report and I would like a
certain field to be displayed on a line by itself in the
text box. What is the expression I would us to get a line
break? Thanks
 
Josh said:
I'm using a text box in a report and I would like a
certain field to be displayed on a line by itself in the
text box. What is the expression I would us to get a line
break?

Not sure I understand, but a new line in a text box
expression would be something like:

="My name is: " & Chr(13) & Chr10) & [lastname]
 
Back
Top