Excel sheet with links to Word doc

Q

QPapillon

Good Afternoon,

In an Excel sheet, I'd like to insert some links to a specific spot in a
word document, is that possible?

Basically, if I click on the link, the document will open up a the correct
section.

Thanks!
Carol
 
D

Dave Peterson

Saved from a previous post:

If I want a link in Excel that points at a specific location in an MSWord
document, I'd add a bookmark to that document and use one of these:

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