Sub tri_N°Clients()
Application.EnableEvents = False
Application.ScreenUpdating = False
'ActiveSheet.Unprotect Password:=""
'With ActiveSheet 'Feuille active
With Sheets("Clients")
If .FilterMode Then .ShowAllData 'si la feuille est filtrée
With .Rows("2:" & .Range("a65536").End(xlUp).Row)
If .Row < 2 Then Exit Sub 'sécurité
.Sort .Columns(1), xlAscending, Header:=xlNo
End With
End With
[a1].Select
'ActiveSheet.Protect Password:="", DrawingObjects:=True, Contents:=True, Scenarios:=True
Application.EnableEvents = True
Application.ScreenUpdating = True
End Sub