View Single Post
 
Old 04-27-2017, 08:33 PM
Cayley Cayley is offline Windows 7 32bit Office 2010 32bit
Novice
 
Join Date: Apr 2017
Posts: 1
Cayley is on a distinguished road
Default

Hi Sarah,

In your case, you can convert footnotes to endnotes.
If there are a lot of footnotes to deal with, you can do as follows:

method 1:
Put cursor at footnote area and press "Ctrl+ A" to select all footnotes in the document.
Then right click and choose "Convert to Endnote".

method 2:
Press "Alt+ F11" to open VBA editor and open a module.
Next paste and run the following codes:

Sub ConvertFootnotesToEndnotes()

If ActiveDocument.Footnotes.Count > 0 Then
ActiveDocument.Footnotes.Convert
Else
MsgBox ("There is no footnote in this document")
End If
End Sub


Hope this helps!

Cayley