Hi steve,
Yes. You can just use a line break. In most programming languages, a line break is "\\n". For example, in C++/C#/PHP/Perl/Python/Ruby:
"First Line\\nSecond Line"
In VB/VBScript/VBA, the line break is vbLF, like "First Line" & vbLF & "Second Line".
Another method is to add <*br*>, like:
"First Line<*br*>SecondLine"
Hope this can help.
Regards
Peter Kwan |