Hyperlinking to a Word Bookmark

To create a hyperlink in Excel that points to bookmark in Word, you need to provide a SubAddress. Insert a hyperlink normally by using Insert>Hyperlink.

InsHyp.gif

When you type your path in the textbox, include a pound sign (#) and the name of the bookmark. Like this

HyperDialog.gif

When you click on the hyperlink, the Word document will open and jump to the bookmark. Whoopee!

6 Comments

  1. Colin says:

    THAT DOESNT WORK!!!!!!!!!!!!

  2. Phill. says:

    I tried and it works great!!

  3. Toby says:

    Thank you! I don’t know why that information isn’t in the help files in Word or Excel. I don’t know what I would do without your site.

  4. Luke says:

    Just wanted to clarify. It works perfectly but you have to do it when the instructions say to (ie. while creating the hyperlink). You can’t just add “#BookmarkName” to the end of the text in a cell that represents the hyperlink. It wont work that way since the text in the cell is merely the text of the hyperlink and not the hyperlink itself.

  5. David Torrens says:

    If you set up this Macro:

    Sub Macro2()

    ‘ Macro2 Macro
    ‘ Macro recorded 05/03/2009 by David Torrens

    ‘ Keyboard Shortcut: Ctrl+j
    Dim CellValue As String
    CellValue = ActiveCell.Value
    ActiveSheet.Hyperlinks.Add Anchor:=Selection, Address:=CellValue, _
    TextToDisplay:=CellValue
    ActiveCell.Offset(1, 0).Activate

    End Sub

    it will turn the text in a cell into a hyperlink andf jump to the next cell down.

  6. Steve says:

    Brilliant, Thank you

Leave a Reply