Sort Dictionary In Vba

[Solved] Sort Dictionary In Vba | Vb - Code Explorer | yomemimo.com
Question : sort dictionary by key vba

Answered by : nasty-newt-8n9w02k3jm8o

Public Function funcSortKeysByLengthDesc(dctList As Object) As Object Dim arrTemp() As String Dim curKey As Variant Dim itX As Integer Dim itY As Integer 'Only sort if more than one item in the dict If dctList.Count > 1 Then 'Populate the array ReDim arrTemp(dctList.Count - 1) itX = 0 For Each curKey In dctList arrTemp(itX) = curKey itX = itX + 1 Next 'Do the sort in the array For itX = 0 To (dctList.Count - 2) For itY = (itX + 1) To (dctList.Count - 1) If Len(arrTemp(itX)) < Len(arrTemp(itY)) Then curKey = arrTemp(itY) arrTemp(itY) = arrTemp(itX) arrTemp(itX) = curKey End If Next Next 'Create the new dictionary Set funcSortKeysByLengthDesc = CreateObject("Scripting.Dictionary") For itX = 0 To (dctList.Count - 1) funcSortKeysByLengthDesc.Add arrTemp(itX), dctList(arrTemp(itX)) Next Else Set funcSortKeysByLengthDesc = dctList End If
End Function

Source : https://stackoverflow.com/questions/14808104/sorting-a-dictionary-by-key-in-vba | Last Update : Wed, 25 Nov 20

Answers related to sort dictionary in vba

Code Explorer Popular Question For Vb