Question

How do I do if I just want the last (inserted) key of a dictionary in excel-VBA?

Will I have to iterate all over the dict every time?

Was it helpful?

Solution

The .Keys property of a Dictionary is an 0 based array of the keys, in the order added.

To get the last added key, use

Dict.Keys(Dict.Count - 1)
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top