G
Graham Mayor
Set rText = ActiveDocument.Bookmarks("BookmarkName").Range
rText.Text = "Lorem ipsum dolor sit amet, consectetuer adipiscing elit"
With ActiveDocument
.Bookmarks.Add "BookMarkName", rText
.Fields.Update
End With
The above extract will write the text string into the Bookmark
"BookmarkName" however I wish to insert a field into the range rText rather
than plain text, which has so far eluded me. Can someone please offer the
way to do this.
Thanks
--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
rText.Text = "Lorem ipsum dolor sit amet, consectetuer adipiscing elit"
With ActiveDocument
.Bookmarks.Add "BookMarkName", rText
.Fields.Update
End With
The above extract will write the text string into the Bookmark
"BookmarkName" however I wish to insert a field into the range rText rather
than plain text, which has so far eluded me. Can someone please offer the
way to do this.
Thanks
--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>