sorting a dictionary

jesse

Registered User.
Local time
Today, 09:20
Joined
Jul 14, 2010
Messages
39
Hi,

In javascript you can sort an array with "array.sort(sortfunc)" where sortfunc is a function which compares two items that you can design yourself. This has always been tremendously useful for me.

Is there a comparable way to sort dictionaries or arrays in VBA?

tnx

Jesse
 
There's one by C Pearson. His is based on the Quick Sort algorithm. I was writing mine yesterday but haven't finished yet :)

Google the term "Sorting Dictionary object C Pearson"
 

Users who are viewing this thread

Back
Top Bottom