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/advisoryserviceFor 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;CNTACTMSUsing Discontiguous Data
When the range is contiguous, there is no need to iterate through the
range. The following Visual Basic macro code includes an example of how you
can iterate through a discontiguous range of data to populate an array and
an example of how you can use a contiguous range of data to populate an
array.
To use the sample macro code, follow these steps:
- Open a new workbook and insert a Visual Basic module sheet.
- On the module sheet, type the following macro code:
Sub PopulateArrayThroughIteration()
' Dimension the variables.
Dim MyArray() As Integer
Dim cell As Object
Dim counter As Integer
' Set the value of the counter variable.
counter = 1
' Start the loop on the range.
For Each cell In Range("a1,a3:a20")
' Redimension the array, while preserving the previous
' elements using the counter variable.
ReDim Preserve MyArray(counter)
' Place a value into the array.
MyArray(counter) = cell.Value
' Increase counter by 1.
counter = counter + 1
' Loop.
Next cell
' Check a value to make sure the array is populated
' this should return 5.
MsgBox MyArray(4)
End Sub
- On Sheet1, type the numbers 1 to 20 in the range A1:A20.
- Activate Sheet1.
- Run the macro. To do this, follow these steps:
- On the Tools menu, point to Macro, and then click Macros.
- In the Macro dialog box, select the name of the macro, and then click Run.
Using Contiguous Data
The following macro populates an array from a contiguous range of data.
Sub PopulateArrayContiguous()
Dim MyArray As Variant
' Populate the array.
MyArray = Range("a1:a20")
' Display a message box with a value in the array
' this should display a 5.
MsgBox MyArray(5, 1)
End Sub