ID: Q184706
The information in this article applies to:
New programming functionality in Microsoft Excel 98 Macintosh Edition allows you to create a collection. A collection is a predefined object that stores groups of related objects. A collection makes it easier to work with the object group. For example, you can use a "For Each...Next" looping structure to loop through the collection. Each time the macro executes the loop, it references a different object in the collection until all objects in the collection are referenced once.
This article includes a sample Visual Basic for Applications macro that creates and references a collection.
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 the Microsoft fee-based consulting line at (800) 936-5200. For more information about the support options available from Microsoft, please see the following page on the World Wide Web:
http://www.microsoft.com/support/supportnet/refguide/
In general, declare an object as a new collection to create the collection.
After you create the Collection object, add items to the collection by
using the Add method or remove items by using the Remove method. To use the
sample macro, follow these steps:
1. Create a new workbook and start the Visual Basic Editor (press
OPTION+F11).
2. On the Insert menu, click Class Module.
3. In the class module, type the following declaration:
Public EmployeeName As String
You typically use a public variable in a class module to define
properties for the class.
4. If the Properties window is not visible, click Properties Window on the
View menu.
5. If the Project Explorer window is not visible, click Project Explorer
on the view menu.
6. In the Project Explorer, click the class module you have inserted in
the project in step 2.
7. In the Properties window, change the (Name) property of the class
module to "EmpClass" (without the quotation marks).
8. On the Insert menu, click Module.
9. 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
10. Run the MyCollection macro.
11. When you are prompted, type any names, and then click Cancel to stop
typing names.
Message boxes that display each of the names you typed appear. 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...Next
loop removes each employee from the collection.
For more information about the Add Method, from the Visual Basic Editor, click the Office Assistant, type "add method," click Search, and then click to view "Add Method(VBA Language Reference)."
For more information about the Collections, from the Visual Basic Editor, click the Office Assistant, type "collections," click Search, and then click to view "Collection Object."
NOTE: If the Assistant is hidden, click the Office Assistant button on the Standard toolbar. If the Assistant is not able to answer your query, please see the following article in the Microsoft Knowledge Base:
ARTICLE-ID: Q176476
TITLE : OFF: Office Assistant Not Answering Visual Basic Questions
Additional query words: XL98
Keywords : kbprg kbdta xlvbahowto xlvbainfo xlmac
Version : MACINTOSH:98
Platform : MACINTOSH
Issue type : kbhowto
Last Reviewed: May 18, 1999