Change to
Sub test()
Dim a, i As Long, w, n As Long, msg As String
Const myRank As Long = 10
a = Sheets("Overblik").Cells(1).CurrentRegion.Value
With CreateObject("System.Collections.SortedList")
For i = 1 To UBound(a, 1)
a(i, 3) = Val(a(i, 3))
If a(i, 2) <> "" Then
If Not .Contains(a(i, 3)) Then
.Item(a(i, 3)) = VBA.Array(a(i, 2) & " (" & a(i, 3) & ")")
Else
w = .Item(a(i, 3))
ReDim Preserve w(UBound(w) + 1)
w(UBound(w)) = a(i, 2) & " (" & a(i, 3) & ")"
.Item(a(i, 3)) = w
End If
End If
Next
msg = "Rank" & vbTab & "Name": n = 1
For i = .Count - 1 To 0 Step -1
If n > myRank Then Exit For
msg = msg & vbLf & n & vbTab & Join(.GetByIndex(i), vbLf & vbTab)
n = n + UBound(.GetByIndex(i)) + 1
Next
End With
MsgBox msg
End Sub
Bookmarks