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