Hi Shawn,
like this:
Sub Exceltest0009()
' reference to word is set
' in tools references
' the word document is already open
Dim oWrd As Word.Application
Set oWrd = GetObject(, "Word.Application")
Dim oDoc As Word.Document
Set oDoc = oWrd.ActiveDocument
Dim rTmp As Word.Range
Set rTmp = oDoc.Range
With rTmp.Find
.Text = "Krypton"
If .Execute Then
rTmp.Bookmarks.Add Name:="Krypton", _
Range:=rTmp
End If
End With
End Sub
see:
http://word.mvps.org/faqs/interdev/EarlyvsLateBinding.htm
http://word.mvps.org/faqs/interdev/ControlWordFromXL.htm

Signature
Greetings from Bavaria, Germany
Helmut Weber, MVP WordVBA
Win XP, Office 2003
"red.sys" & Chr$(64) & "t-online.de"
Shawn G. - 06 Oct 2005 14:36 GMT
Helmut,
You are awesome! I spent all day yesterday trying to make this work and even
asked several times on the Excel programming Group And you solved the
problem!!!
Thank You Very Much!!!!!
> Hi Shawn,
>
[quoted text clipped - 22 lines]
> http://word.mvps.org/faqs/interdev/EarlyvsLateBinding.htm
> http://word.mvps.org/faqs/interdev/ControlWordFromXL.htm