Microsoft provides programming examples for illustration only, without warranty either 
expressed or implied, including, but not limited to, the implied warranties of 
merchantability and/or fitness for a particular purpose. This article assumes 
that you are familiar with the programming language being demonstrated and the 
tools used to create and debug procedures. Microsoft support professionals can 
help explain the functionality of a particular procedure, but they will not 
modify these examples to provide added functionality or construct procedures to 
meet your specific needs. 
If you have limited programming experience, you may 
want to contact a Microsoft Certified Partner or Microsoft Advisory Services. For more information, visit these Microsoft Web sites:
Microsoft Certified 
Partners - 
https://partner.microsoft.com/global/30000104Microsoft Advisory Services - 
http://support.microsoft.com/gp/advisoryservice
For more information about the support options that are available and about how to contact Microsoft, visit the following Microsoft Web site:
http://support.microsoft.com/default.aspx?scid=fh;EN-US;CNTACTMS
To create the collection, declare an object as a new collection. After you create the 
Collection object, you may add items to the collection using the 
Add method or remove items using the 
Remove method.
To create a collection, follow these steps:
- Open a new workbook, and then start the Visual Basic Editor (press
    ALT+F11).
- On the Insert menu, click Class Module.
- In the class module, type the following declaration:
Public EmployeeName As String
						 
- If the Properties window is not visible, click Properties Window on the View menu.
- If the Project Explorer window is not visible, click Project Explorer on the View menu.
- In the Project Explorer window, click the class module you inserted in step 2.
- In the Properties window, change the (Name) property of the class module to EmpClass.
- On the Insert menu, click Module.
- In this module, type the following code:
Sub MyCollection()
   Dim employees As New Collection   'Create the collection object.
   Dim num As Integer
   num = 0    'Counter for number of employees added to the
                'collection.
   Do
   Dim employee As New EmpClass    'Create new instance of the
                                         'EmpClass class.
   num = num + 1
   newname = InputBox("Enter new employee name" & Chr(13) _
          & "or press Cancel to see list of employees.")
   If newname <> "" Then   'You did not press Cancel.
          employee.EmployeeName = newname
          employees.Add Item:=employee, key:=CStr(num)
          Set employee = Nothing    'Clear the current reference
                                       'in preparation for next one.
   End If
   Loop Until newname = ""  'You pressed Cancel.
   For Each x In employees
      MsgBox x.EmployeeName 'Display the employee name.
   Next
   MsgBox employees.Count  'Current number of employees in collection.
   For Each x In employees
       employees.Remove 1   'Remove each employee from the collection.
   Next
   MsgBox employees.Count 'Display a count of zero because
                            'all employees were removed from the
                            'collection.
End Sub
					
- Run the MyCollection macro.
- When you are prompted, type any names and click OK after each name. Click Cancel to stop typing names.
Message boxes that display each of the names you typed appear, and then a message box that displays a count of the names you typed appears. Another message box with a count of zero appears because the last 
For Each loop statement removes each employee from the collection.