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 72,2% France
Canada 7,4% Canada
Belgique 3,8% Belgique

Total:

120

Pays
018320347
Aujourd'hui: 234
Hier: 450
Cette semaine: 684
Semaine dernière: 2.431
Ce mois: 6.541