Hyperlink to specific point in word doc

  • Thread starter Thread starter ksgoodwin
  • Start date Start date
K

ksgoodwin

I am trying to link to a specific location in a word doc from Excel.
Can I add something to the hyperlink to find a string of text in the
word doc. Or run a macro, open the word doc and then search for a
string of interest?, etc?? Suggestions?
 
If you insert a bookmark in your MSWord file:

Both of these worked ok for me:

(Insert|hyperlink style)
C:\MY DOCUMENTS\WORD\MyDoc.DOC#bkmk01
Or
=hyperlink() style:
=hyperlink("C:\MY DOCUMENTS\WORD\MyDoc.DOC#bkmk01")
 
Back
Top