Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

XL2000: How to Populate an Array with a Discontiguous Range


View products that this article applies to.

This article was previously published under Q213797

↑ Back to the top


Summary

To populate an array using Microsoft Visual Basic for Applications in Microsoft Excel, you need to iterate through the range object to populate an array with the data if the range object is discontiguous (whether it is a selection, range name, or the reference).

↑ Back to the top


More information

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/30000104

Microsoft 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

Using 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:
  1. Open a new workbook and insert a Visual Basic module sheet.
  2. 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
    					
  3. On Sheet1, type the numbers 1 to 20 in the range A1:A20.
  4. Activate Sheet1.
  5. Run the macro. To do this, follow these steps:
    1. On the Tools menu, point to Macro, and then click Macros.
    2. 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
				

↑ Back to the top


References

For more information, see the Visual Basic User's Guide, version 5.0, Chapter 6, "Working with Visual Basic Code in Procedures."

↑ Back to the top


Keywords: KB213797, kbprogramming, kbhowto, kbdtacode

↑ Back to the top

Article Info
Article ID : 213797
Revision : 8
Created on : 11/23/2006
Published on : 11/23/2006
Exists online : False
Views : 257