In the label expression dialog box, how do I force the text to the next line?
Solved! Go to Solution.
If you use the VBScript parser you can use vbCrLf for new lines, like:
[Field1] & vbCrLf & [Field2]
See screendump below for an example:
If you use the Python parser you can use "\n" for new lines, like:
[Field1] + "\n" + [Field2]
If you use the VBScript parser you can use vbCrLf for new lines, like:
[Field1] & vbCrLf & [Field2]
See screendump below for an example:
Thank you so much, I was really stuck on this one.
vbNewLine will work as well.