A family of Microsoft relational database management systems designed for ease of use.
No, VBA doesn't support that. You might use an array of collections:
Dim clnTmpCollection As Collection
Dim clnCollections(1 To 5) As Collection
Set clnCollections(1) = New Collection
clnCollections(1).Add "Alpha"
clnCollections(1).Add "Beta"
clnCollections(1).Add "Gamma"
Set clnCollections(2) = New Collection
clnCollections(2).Add "Amsterdam"
clnCollections(2).Add "Brussels"
clnCollections(2).Add "Copenhagen"
' ...
' ...
Set clnTmpCollection = clnCollections(2)
MsgBox clnTmpCollection(3)
Note the keyword Set. This is required when assigning a collection to a variable.