S
sandal
When I use a statement like
With .Selection.Find
.Replacement.Text = "Some Text" & vbCrLf & "More text on a new line"
I get a mess like
Some Text [][]More text on a new line
Those [] are standing in for little square characters.
It should be simple but how do I get
Some Text
More text on a new line
With .Selection.Find
.Replacement.Text = "Some Text" & vbCrLf & "More text on a new line"
I get a mess like
Some Text [][]More text on a new line
Those [] are standing in for little square characters.
It should be simple but how do I get
Some Text
More text on a new line