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,0% France
Canada 5,3% Canada
Chine 4,0% Chine

Total:

154

Pays
018462564
Aujourd'hui: 31
Hier: 376
Cette semaine: 1.414
Semaine dernière: 3.335
Ce mois: 10.492