
Sub 问题()
Dim dic, row, arr, drr, brr, r, b, d
Set dic = CreateObject("scripting.dictionary")
row = Cells(Rows.Count, 1).End(xlUp).row
ReDim drr(1 To row, 1 To 2)
arr = [a1].CurrentRegion
For r = 2 To row
If Not dic.exists(Cells(r, 1).Value) Then
num = num + 1
drr(num, 1) = Cells(r, 1).Value
End If
dic(Cells(r, 1).Value) = dic(Cells(r, 1).Value) & "," & r
Next
[f2].Resize(num, 1) = drr
drr = []
For r = 2 To num + 1
drr = Split(dic(Cells(r, 6).Value), ",")
ReDim brr(1 To UBound(drr, 1))
For d = 1 To UBound(drr, 1)
brr(d) = arr(drr(d), 2)
Next
Cells(r, 7).Value = Join(brr, " ")
Next
End Sub