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 -

python - PIL cannot identify image file for io.BytesIO object -

java - disabling a node without disable its children in javafx -