Bonjour à tous!
Niba, désolé je n'avais pas re-testé en y ajoutant d'autres chiffres
xorsankukai, bien vu pour la réponse Bravo!
une autre solution que j'ai pensé c'est de remplacer tous les .bis par rien et refaire la macro
'SANS COLONNE SUPPLÉMENTAIRE
Sub test()
Dim c As Variant
dl = Range("A" & Rows.Count).End(xlUp).Row
Application.ScreenUpdating = False
Cells.Replace What:=".*", Replacement:="", LookAt:=xlPart, SearchOrder _
:=xlByRows, MatchCase:=False, SearchFormat:=False, ReplaceFormat:=False
compt = 0
For i = 2 To dl
For Each c In Range("A2:A50")
If c = Cells(i, 1) Then
compt = compt + 1
X = compt
End If
Next c
compt = 0
If X >= 2 Then
Cells(i, 1) = Cells(i, 1) & ".bis"
End If
Next i
'TRI DE LA COLONNE FACULTATIF
Range("A1").Sort Key1:=Range("A1"), Order1:=xlAscending, Header:=xlYes
Application.ScreenUpdating = True
End Sub
Bonne journée!