Recherche

Avec une macro :

 

Sub surlignage()
'macro écrite par m@rina
Dim trad As String, Liste As String, ND As Document

Application.ScreenUpdating = False
Selection.HomeKey Unit:=wdStory

'Recherche de tous les mots surlignés
    Do
        Selection.Find.ClearFormatting
        With Selection.Find
        .Highlight = True

            .Execute
        End With

    If Selection.Find.Found Then
        trad = Selection.Text
            If InStr(Liste, trad) = 0 Then
                Liste = Liste & trad & vbCr
            End If
        End If
    Loop Until Not Selection.Find.Found

'On crée le nouveau doc et on y insère les textes trouvés
    Set ND = Documents.Add
    Selection.TypeText Text:=Liste
End Sub

Statistiques

France 75,2% France
Canada 8,3% Canada
États-Unis d'Amérique 5,2% États-Unis d'Amérique

Total:

60

Pays
018271445
Aujourd'hui: 128
Hier: 112
Cette semaine: 511
Semaine dernière: 1.101
Ce mois: 4.242