I have this macro I use by manually selecting the text I want to duplicate (in MS Word).
testoin = Selection.Text
testout = testoin & Chr(13) & testoin
Selection.Text = testout
I have been trying to get VBA to hide (Font hide) the "original" portion of the text (i.e. the testoin before the Chr(13)
using MoveEnd
MoveLeft
etc. to no avail. Could you please help?