Hyperlinks from Headings to the TOC

Written by Allen Wyatt (last updated February 20, 2021)
This tip applies to Word 2007, 2010, 2013, 2016, 2019, and Word in Microsoft 365


1

Peter writes manuals and can autogenerate a chapter's Table of Contents in the normal way. This allows readers to click on a TOC entry and jump to the heading, but there is no way to click on the heading and get back to the TOC. So readers can do this, Peter has to individually apply a hyperlink to the heading and then get rid of the underlining, which he finds unsightly. A manual's chapter can contain hundreds of headings, so the task of applying the hyperlinks individually can be painful. Peter wonders if there is a way to automate the adding of hyperlinks to headings as he needs.

Peter's approach, while well intentioned, is completely unnecessary. Word does provide a way to click a heading in the TOC (which Peter knows) and then return to that heading in the TOC (which Peter apparently doesn't know). The specific shortcut for accomplishing this task is Alt+Left Arrow. The shortcut jumps back to where you were before clicking on the hyperlink in the TOC, which makes it great for long tables of contents—you are returned to exactly where you were rather than to the beginning of the TOC.

The shortcut key is the best solution for readers; it works by default on a standard Word installation. If wanted, however, you could add a Back button to your Quick Access Toolbar that could be clicked to return to the TOC's point of departure. Follow these steps:

  1. Display the Word Options dialog box. (In Word 2007 click the Office button and then click Word Options. In Word 2010 or a later version, display the File tab of the ribbon and then click Options.)
  2. At the left side of the dialog box click Customize (Word 2007) or Quick Access Toolbar (later versions of Word). (See Figure 1.)
  3. Figure 1. The Quick Access Toolbar area of the Word Options dialog box.

  4. Using the Choose Commands From drop-down list, choose All Commands.
  5. In the list of commands, locate and select the Back command.
  6. Click the Add button. The Back command now appears at the right side of the dialog box, in the list of Quick Access Toolbar commands.
  7. Use the Up and Down arrow buttons to situate the Back command within the Quick Access Toolbar commands.
  8. Click OK.

The Back command, which now appears on the Quick Access Toolbar, performs the exact same function as the Alt+Left Arrow shortcut.

If you still want to add hyperlinks to headings, the only way to automate the process is to use a macro. The following macro steps through each entry in the first TOC in the document, finds the referenced heading in the main body of the text, and then adds a hyperlink back to the TOC.

Sub HyperlinkHeadings()
    Dim hyp As Hyperlink
    Dim toc As TableOfContents
    Dim k As Long
    Dim bkmk As String
    Dim sCode As String
    Dim fld As Field
    Dim aRange As Range

    If ActiveDocument.TablesOfContents.Count = 0 Then
        MsgBox "There are no Tables of Contents in document"
        Exit Sub
    End If

    Set toc = ActiveDocument.TablesOfContents(1)

    For Each fld In toc.Range.Fields
        sCode = fld.Code.Text
        If InStr(sCode, "HYPERLINK") > 0 Then
            bkmk = Mid(sCode, InStr(sCode, "_"))
            bkmk = Left(bkmk, Len(bkmk) - 2)
            fld.Select
            ActiveDocument.Bookmarks.Add Range:=Selection.Range, _
              Name:=bkmk & "R"

            Set aRange = ActiveDocument.Bookmarks(bkmk).Range
            aRange.Select
            With ActiveDocument.Hyperlinks.Add(Anchor:=Selection.Range, _
                Address:="", SubAddress:=bkmk & "R", _
                  TextToDisplay:=Selection.Text)
                .Range.Select
                Selection.ClearCharacterAllFormatting
            End With
        End If
    Next fld

    Options.CtrlClickHyperlinkToOpen = False
End Sub

Note:

If you would like to know how to use the macros described on this page (or on any other page on the WordTips sites), I've prepared a special page that includes helpful information. Click here to open that special page in a new browser tab.

WordTips is your source for cost-effective Microsoft Word training. (Microsoft Word is the most popular word processing software in the world.) This tip (13059) applies to Microsoft Word 2007, 2010, 2013, 2016, 2019, and Word in Microsoft 365.

Author Bio

Allen Wyatt

With more than 50 non-fiction books and numerous magazine articles to his credit, Allen Wyatt is an internationally recognized author. He is president of Sharon Parq Associates, a computer and publishing services company. ...

MORE FROM ALLEN

Adjusting Test Scores Proportionately

Teachers often grade on what is affectionately referred to as "the curve." The problem is, it can be a bit difficult to ...

Discover More

Special Characters in Pattern Matching

The most powerful search engine in Word use pattern matching, but the way you specify special characters in a ...

Discover More

Limiting Document Page Count

Do you need to have your document fit within a certain number of pages? This can be close to impossible to do within ...

Discover More

Comprehensive VBA Guide Visual Basic for Applications (VBA) is the language used for writing macros in all Office programs. This complete guide shows both professionals and novices how to master VBA in order to customize the entire Office suite for their needs. Check out Mastering VBA for Office 2010 today!

More WordTips (ribbon)

Creating a Custom TOC that Includes Portions of Paragraphs

Word provides a number of tools that can help you create custom tables of contents. This tip looks at a way you can ...

Discover More

Creating a Table of Contents Involving Multiple Documents

Word can handle very large documents, but some people find it preferable to break large documents into multiple ...

Discover More

Specifying a Table of Contents Entry

If you need to create a specialized table of contents, you need to know how to add TOC entries to your document. It's ...

Discover More
Subscribe

FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."

View most recent newsletter.

Comments

If you would like to add an image to your comment (not an avatar, but an image to help in making the point of your comment), include the characters [{fig}] (all 7 characters, in the sequence shown) in your comment text. You’ll be prompted to upload your image when you submit the comment. Maximum image size is 6Mpixels. Images larger than 600px wide or 1000px tall will be reduced. Up to three images may be included in a comment. All images are subject to review. Commenting privileges may be curtailed if inappropriate images are posted.

What is 1 + 1?

2022-07-18 21:41:13

nijineko

This macro is exactly what I was looking for!
Sadly, I do not have Word, but instead use LibreOffice.
Would you happen to know of anyone that could convert this macro to a LibreOffice compatible macro, by chance?
In any case, thank you for this work.


This Site

Got a version of Word that uses the ribbon interface (Word 2007 or later)? This site is for you! If you use an earlier version of Word, visit our WordTips site focusing on the menu interface.

Videos
Subscribe

FREE SERVICE: Get tips like this every week in WordTips, a free productivity newsletter. Enter your address and click "Subscribe."

(Your e-mail address is not shared with anyone, ever.)

View the most recent newsletter.