
Option Explicit
Sub abc()
Dim i, a(4), d(4)
For i = 1 To 4 Step 3
a(i) = Cells(1, i).Resize(Cells(1, i).End(xlDown).Row, 3).Value
Set d(i) = CreateObject("scripting.dictionary")
Call dsort(a(i), d(i))
Next
Call findstr(a(1), d(4), "d列:")
Call findstr(a(4), d(1), "a列:")
For i = 1 To 4 Step 3
Cells(1, i).Resize(UBound(a(i)), 2) = a(i)
Next
End Sub
Function findstr(a, d, s)
Dim i
For i = 1 To UBound(a)
If d.exists(a(i, 3)) Then
a(i, 2) = s & Mid(d(a(i, 3)), 2)
Else
a(i, 2) = s & "不存在"
End If
Next
End Function
Function dsort(a, d)
Dim i, j, k, t, s
For i = 1 To UBound(a)
t = Split(a(i, 1), ",")
For j = 0 To UBound(t) - 1
For k = j + 1 To UBound(t)
If t(j) > t(k) Then
s = t(j): t(j) = t(k): t(k) = s
End If
Next
Next
t = Join(t, ","): a(i, 3) = t
d(t) = d(t) & "、" & i
Next
End Function