Recherche

 

Voici deux macros :

 

Pour copier tout commentaire en note de bas de page :

Sub ConvertCommentsToFootnotes()
Dim c As Comment
Dim r As Range
For Each c In ActiveDocument.Comments
Set r = c.Reference
r.Collapse wdCollapseStart
ActiveDocument.Footnotes.Add Range:=r, _
Text:=c.Range.Text
Next c
End Sub

 

Pour supprimer tous les commentaires.

Sub DeleteComments()
Dim i As Long
For i = ActiveDocument.Comments.Count To 1 Step - 1
ActiveDocument.Comments(i).Delete
Next i
End Sub

 

 

Statistiques

France 71,8% France
Canada 5,2% Canada
Chine 4,1% Chine

Total:

159

Pays
018469779
Aujourd'hui: 52
Hier: 381
Cette semaine: 848
Semaine dernière: 2.486
Ce mois: 6.184