vba - MS Access: dictionary sorting and manipulation -


suppose want have list of item below

arr["john"] = 40 arr["mark"] = 12 arr["clark"] = 53 arr["sam"] = 23 

now want sort them depending on values below

arr["clark"] = 53 arr["john"] = 40 arr["sam"] = 23 arr["mark"] = 12 

how can this?

you use dictionary microsoft scripting runtime library:

dictionary in vba

sorting dictionary


Comments

Popular posts from this blog

python - No exponential form of the z-axis in matplotlib-3D-plots -

excel vba - VBA Proxy auto-configuration for http requests -

sql server 2008 - split ssrs expression between 2 words -