79184950

Date: 2024-11-13 12:48:08
Score: 1
Natty:
Report link
Dim st As String
st = "Line 1" & vbCrLf & "Line 2"

This will concatenate "Line 1" and "Line 2" with a line break in between. You can also use vbNewLine for the same effect, but vbCrLf is generally more reliable across various environments where you might run the code.

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: keeranadams