I turned my comments into footnotes using the following macro by tohuwawohu (very helpful one thanks man) but because of how I had my comments placed it turned out that most of footnote references (the numbers in text 1,2 etc) where in awkward places in the middle of sentence.
Is there a macro or some other way I can move it at the end of sentence/paragraph?
Link and macro:
(How can I automatically convert all comments in a word 2010 document to footnotes?)
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