> How about using a bookmark?
>
> Something like:
> Sub ScratchMacro()
> ActiveDocument.Bookmarks("GoHere").Select
> End Sub
A bookmark is very probably the right way to go, but thwere's no need to
select it, the text can be inserted directly
ActiveDocument.Bookmarks("GoHere").Range.Text = "My new text"

Signature
Regards
Jonathan West - Word MVP
www.intelligentdocuments.co.uk
Please reply to the newsgroup
Greg - 23 Feb 2005 22:00 GMT
Jonathan,
Copy all. Thanks.
HeatherO - 26 Feb 2005 19:05 GMT
Thanks I am using bookmarks, However I do also have to put data into a table
and was just wondering how word recognizes where to put the data in a table
or do I have to put book marks in there but I am just concerned because I am
unsure if there might be 1 line in the table or 4 or more and so I was also
just wondering how you add new rows to a table in word and how to put the
data into the specific columns of that table. Thanks again.
Heather
> > How about using a bookmark?
> >
[quoted text clipped - 7 lines]
>
> ActiveDocument.Bookmarks("GoHere").Range.Text = "My new text"