Group:  Microsoft Word ยป microsoft.public.word.docmanagement
Thread: Footnote Summary

Geek News

Footnote Summary
NHMM 12/10/2008 7:22:07 PM
Is there a way to print a summary of the footnotes in a document? (i.e. a
list showing the footnotes and the page where it is used)
Thanks
RE: Footnote Summary
Stefan Blom 12/17/2008 9:48:01 AM
This simple macro should work:

Sub TestFootNotes()
Dim f As Footnote
Dim d As Document
Dim n As Document
Set d = ActiveDocument
Set n = Documents.Add

n.Content.InsertAfter "Footnotes in document " & d.FullName
n.Content.InsertParagraphAfter

For Each f In d.Footnotes

n.Content.InsertAfter f.Index & " " & f.Range.Text & _
" on page: " & f.Range.Information(wdActiveEndPageNumber)
n.Content.InsertParagraphAfter
Next f
End Sub

For assistance, see http://www.gmayor.com/installing_macro.htm.

--
Stefan Blom
Microsoft Word MVP


"NHMM" wrote:

[Quoted Text]
> Is there a way to print a summary of the footnotes in a document? (i.e. a
> list showing the footnotes and the page where it is used)
> Thanks

Home | Search | Terms | Imprint Contact
Newsgroups Reader - provided by WiredBox.Net