Merci pour ton aide, cependant on vient de m'apporter la solution. Ci-dessous et pour info, si cela peux te rendre service, la macro utilisée :
Sub tri()
With [Feuil1]
Y = Application.WorksheetFunction.Match(9 ^ 9, .Range("G18:G34"), 1)
If Y = 1 Then Exit Sub
Y = Y + 17
ActiveWorkbook.Worksheets("Feuil1").Sort.SortFields.Clear
.Sort.SortFields.Add2 Key:=Range("C19:C" & Y), SortOn:=xlSortOnValues, Order:=xlAscending, DataOption:=xlSortNormal
.Sort.SortFields.Add2 Key:=Range("D19:D" & Y), SortOn:=xlSortOnValues, Order:=xlAscending, DataOption:=xlSortNormal
With ActiveWorkbook.Worksheets("Feuil1").Sort
.SetRange Range("C18:G" & Y)
.Header = xlYes
.MatchCase = False
.Orientation = xlTopToBottom
.Apply
End With
End With
End Sub