Sub Tri()
Dim FinTri As Integer
With Sheets("BDD")
FinTri = .Range("D" & .Rows.Count).End(xlUp).Row
Application.CutCopyMode = False
End With
Sheets("BDD").Range("D11:G" & FinTri).Select
Selection.Sort Key1:=Range("D11"), Order1:=xlAscending, Header:=xlGuess, _
OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom, _
DataOption1:=xlSortNormal
End Sub