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 -

php - Best Light server (Linux + Web server + Database) for Raspberry Pi -

c# - "Newtonsoft.Json.JsonSerializationException unable to find constructor to use for types" error when deserializing class -