Collection.Count Property

Syntax

objectvariable.Count

objectvariable

Use: Required

Data Type: Collection object

Object variable referring to a Collection object.

Description

Returns the number of members in the collection.

Rules at a Glance

Collections are 1-based; that is, the index of the first element of a collection is 1. In contrast, arrays are 0-based; by default, the index of the first element of an array is 0.

Example

For i = 1 To colMyCollection.Count
    Set colSubCollection = colMyCollection.Item(CStr(i))
    MsgBox colSubCollection.Item("Name")
    Set colSubCollection = Nothing
Next i

Programming Tips and Gotchas

Because collections are 1-based, you can iterate the members of a collection by using index values ranging from 1 to the value of objectvariable.Count.

See Also

Collection Object, Collection.Add Method, Collection.Count Property, Collection.Item Method

Get VB & VBA in a Nutshell: The Language now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.