PRUDHOMME12
XLDnaute Nouveau
Bonjour à tous
Encore moi
Maintenant je cherche à faire le tri automatique d'une colonne
Encore moi
Maintenant je cherche à faire le tri automatique d'une colonne
.Sort
(regarde l'Aide VBA pour plus d'infos là-dessus )Sub Tri()
Sheets("FM").Range("A2:A5924").Copy
Sheets("Feuil2").Range("J2:J5924").PasteSpecial xlPasteValues
End Sub
Option Explicit
Sub Tri()
Dim n&
With Worksheets("FM")
n = .Cells(Rows.Count, 1).End(xlUp).Row: If n < 3 Then Exit Sub
Application.ScreenUpdating = 0: n = n - 1: .[A2].Resize(n).Copy
End With
With Worksheets("Feuil2")
.[J2].PasteSpecial xlPasteValues
.[J2].Resize(n).Sort .[J2], 1
.Select: [A1].Select
End With
End Sub