A voir également:
- Sort en VBA sans connaitre dernière colonne
- Dernière version ccleaner gratuit français - Télécharger - Nettoyage
- Déplacer une colonne excel - Guide
- Formule somme excel colonne - Guide
- Trier colonne excel - Guide
- Supprimer dernière page word - Guide
1 réponse
Ne cherchez plus, j'ai trouvé.
Dim DernLigne As Long, DernCol As integer, LetCol as string
DernLigne = Range("A" & Rows.Count).End(xlUp).Row
DernCol = Cells(1, Cells.Columns.Count).End(xlToLeft).Column
LetCol = Split(Cells(1, DernCol).Address, "$")(1)
Range("A1:" & LetCol & DernLigne).Sort Key1:=Range("B2"), Order1:=xlAscending, Key2:= _
Range("C2"), Order2:=xlAscending, Header:=xlGuess, OrderCustom:=1, _
MatchCase:=False, Orientation:=xlTopToBottom, DataOption1:=xlSortNormal, _
DataOption2:=xlSortNormal
Merci quand même et bonne fin de journée.
Dim DernLigne As Long, DernCol As integer, LetCol as string
DernLigne = Range("A" & Rows.Count).End(xlUp).Row
DernCol = Cells(1, Cells.Columns.Count).End(xlToLeft).Column
LetCol = Split(Cells(1, DernCol).Address, "$")(1)
Range("A1:" & LetCol & DernLigne).Sort Key1:=Range("B2"), Order1:=xlAscending, Key2:= _
Range("C2"), Order2:=xlAscending, Header:=xlGuess, OrderCustom:=1, _
MatchCase:=False, Orientation:=xlTopToBottom, DataOption1:=xlSortNormal, _
DataOption2:=xlSortNormal
Merci quand même et bonne fin de journée.