Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to do the following in a set of Word 2010 documents:

1) Find the next occurrence of Heading 2

2) Create a bookmark based on the text of the heading

3) Repeat to end of document

I've got #1 and #2 but need the syntax to loop through an entire document. How to do that? Thanks in advance...

Sub CreateBookmark()

    Dim AppCardName As DataObject
    Set AppCardName = New DataObject
    Dim BookmarkName As String

    'Find next Heading 2
    Selection.Find.ClearFormatting
    Selection.Find.Style = ActiveDocument.Styles("Heading 2")
    With Selection.Find
        .text = ""
        .Replacement.text = ""
        .Forward = True
        .Wrap = wdFindContinue
        .Format = True
        .MatchCase = False
        .MatchWholeWord = False
        .MatchWildcards = False
        .MatchSoundsLike = False
        .MatchAllWordForms = False
    End With
    Selection.Find.Execute

    Selection.Copy
    AppCardName.GetFromClipboard
    BookmarkName = AppCardName.GetText(1)
    BookmarkName = CleanUpText(BookmarkName)

    With ActiveDocument.Bookmarks
        .Add Range:=Selection.Range, Name:=BookmarkName
        .DefaultSorting = wdSortByName
        .ShowHidden = True
    End With

End Sub
share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.