views:

102

answers:

1

What is the simplest way in VBA to determine the size (i.e., number of keys) in a dictionary object?

+2  A: 

As in a Scripting.Dictionary? just use its .Count property.

Alex K.
That is exactly what I needed.
Gershwyn