String - How to continue in the next line

  • Thread starter Thread starter Sharon
  • Start date Start date
S

Sharon

Hi,

I have a field initiallized with a text.
How can I continue in the next line - do "enter" to a
string variable?
 
Not sure what you mean. You want to append to an existing string, but have
it start on the next line? The vbCrLf can be used to start a new line:

MyText = MyOldText & vbCrLf & "My new text here starts on the next line."
 
Back
Top