Recommended Posts

Sub comment2footnote()
	Application.ScreenUpdating = False
	Dim oDoc As Document, oComment As Comment
	Set oDoc = ActiveDocument
	For Each oComment In ActiveDocument.Comments
		oDoc.Footnotes.Add Range:=oComment.Scope, Text:=oComment.Range.Text
		oComment.Delete
	Next
	Application.ScreenUpdating = True
End Sub

From: https://superuser.com/questions/160657/how-can-i-automatically-convert-all-comments-in-a-word-2010-document-to-footnote

 

For adding macro scripts in word: http://www.techtoolsforwriters.com/how-to-add-a-macro-to-word/

This topic is now closed to further replies.