Sub test()
Dim a(), i As Long, myOrder, x
a = [{"a1","a2","a3","a4","a5";"b1","b2","b3","b4","b5"; _
"c1","c2","c3","c4,"c5";"d1""d2","d3","d4","d5"}]
myOrder = Array("c4","a4","d4","b4")
With Application.WorksheetFunction
For i = 1 To UBound(a,1)
msg = msg & vbLf & Join(.Transpose(.Transpose(.Index(a, i, 0))), ",")
Next
End With
MsgBox "Before sort" & msg : msg = ""
ReDim Preserve a(1 To UBound(a,1), 1 To UBound(a,2) + 1)
For i = 1 To UBound(a,1)
x = Application.Match(a(i,4), myOrder, 0)
If IsErro(x) Then x = a(i,4)
a(i, UBound(a,2)) = x
Next
VSortMA a, 1, UBound(a,1), UBound(a,2)
ReDim Preserve a(1 To UBound(a,1), 1 To UBound(a,2) - 1)
With Application.WorksheetFunction
For i = 1 To UBound(a,1)
msg = msg & vbLf & Join(.Transpose(.Transpose(.Index(a, i, 0))), ",")
Next
End With
MsgBox "After sort" & msg
End Sub
Private Sub VSortMA(ary, LB, UB, ref)
Dim M As Variant, i As Long, ii As Long, iii As Long
i = UB : ii = LB
M = ary(Int((LB+UB)/2),ref)
Do While ii <= i
Do While ary(ii,ref) < M
ii = ii + 1
Loop
Do While ary(i,ref) > M
i = i - 1
Loop
If ii <= i Then
For iii = LBound(ary,2) To UBound(ary,2)
temp = ary(ii,iii) : ary(ii,iii) = ary(i,iii) : ary(i,iii) = temp
Next
ii = ii + 1 : i = i - 1
End If
Loop
If LB < i Then VSortMA ary, LB, i, ref
If ii < UB Then VSortMA ary, ii, UB, ref
End Sub
Bookmarks