The comment reference, ballon, or rangestory?
Sub ScratchMacro()
'A basic Word macro coded by Greg Maxey
Dim oRng As Word.Range
On Error GoTo lbl_Exit
Set oRng = ActiveDocument.Comments(1).Reference
oRng.Collapse wdCollapseEnd
oRng.Move wdCharacter, 1
oRng.Select
lbl_Exit:
Exit Sub
End Sub
|