Find size of dictionary object in VBA Find size of dictionary object in VBA vba vba

Find size of dictionary object in VBA


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


For the number of keys (not items) you should use .Keys property, via UBound(Dictionary.Keys) since its an array