Try vbCr
e.g.,
Sub ScratchMacro()
Dim oRng As Word.Range
Set oRng = ActiveDocument.Range
With oRng.Find
.Text = "Test"
.Replacement.Text = "Test" & vbCr & "More text on following line"
.Execute Replace:=wdReplaceAll
End With
End Sub

Signature
Greg Maxey/Word MVP
See:
http://gregmaxey.mvps.org/word_tips.htm
For some helpful tips using Word.
> When I use a statement like
>
[quoted text clipped - 11 lines]
> Some Text
> More text on a new line
sandal - 02 Oct 2007 02:57 GMT
I tried that and vbLf and Chr(13) you name it...
Tony Jollans - 02 Oct 2007 09:05 GMT
You should use "^p" to get a paragraph in the body of a word document.
If you are getting little square characters something is odd. Where is the
Selection?

Signature
Enjoy,
Tony
>I tried that and vbLf and Chr(13) you name it...