Sub essai()
Dim tab_cle
Set tab_cle = CreateObject("scripting.dictionary")
If Selection.Information(wdWithInTable) = True Then
Selection.Tables(1).Select
Set tableau = Selection.Range
nbligne = Selection.Tables(1).Rows.Count
b = 1
While b <= Selection.Tables(1).Rows.Count
txt = Selection.Tables(1).Cell(b, 1)
txt = Mid(txt, 1, Len(txt) - 1)
If tab_cle.Exists(txt) Then
Selection.Tables(1).Rows(b).Delete
Else
tab_cle(txt) = 1
b = b + 1
End If
Wend
End If
End Sub