Visual Basic Macro Examples For Working With Arrays

Skip to main content Sign in with Microsoft Sign in or create an account. Hello, Select a different account. You have multiple accounts Choose the account you want to sign in with.

Summary

This article contains sample Microsoft Visual Basic for Applications procedures that you can use to work with several types of arrays.

More Information

Microsoft provides programming examples for illustration only, without warranty either expressed or implied. This includes, but is not limited to, the implied warranties of merchantability or fitness for a particular purpose. This article assumes that you are familiar with the programming language that is being demonstrated and with the tools that are used to create and to debug procedures. Microsoft support engineers 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 requirements. NOTE: In Visual Basic for Applications procedures, the words after the apostrophe (') are comments.  

To Fill an Array and Then Copy It to a Worksheet

  1. Open a new workbook and insert a Visual Basic module sheet.

  2. Type the following code on the module sheet.

    Sub Sheet_Fill_Array() Dim myarray As Variant myarray = Array(1, 2, 3, 4, 5, 6, 7, 8, 9, 10) Range("a1:a10").Value = Application.Transpose(myarray) End Sub
  3. Select Sheet1.

  4. On the Tools menu, point to Macro and then click Macros.

  5. In the Macro dialog box, click Sheet_Fill_Array, and then click Run.

To Take Values from a Worksheet and Fill the Array

  1. Type values on Sheet1 in cells A1:A10.

  2. On a Visual Basic module sheet, type the following code:

    Sub from_sheet_make_array() Dim thisarray As Variant thisarray = Range("a1:a10").Value counter = 1 'looping structure to look at array While counter <= UBound(thisarray) MsgBox thisarray(counter, 1) counter = counter + 1 Wend End Sub
  3. Select Sheet1.

  4. On the Tools menu, point to Macro and then click Macros.

  5. In the Macro dialog box, click from_sheet_make_array, and then click Run.

To Pass and Receive an Array

  1. On a module sheet, type the following code:

    Sub pass_array() Dim thisarray As Variant thisarray = Selection.Value receive_array (thisarray) End Sub Sub receive_array(thisarray) counter = 1 While counter <= UBound(thisarray) MsgBox thisarray(counter, 1) counter = counter + 1 Wend End Sub
  2. Select Sheet1, and highlight the range A1:A10.

  3. On the Tools menu, point to Macro and then click Macros.

  4. In the Macro dialog box, click pass_array, and then click Run.

To Compare Two Arrays

  1. Create two named ranges on Sheet1. Name one range1 and the other range2. For example, highlight the cell range A1:A10 and name it range1; highlight the cell range B1:B10 and name it range2.

  2. Type the following code on the module sheet.

    Sub compare_two_array() Dim thisarray As Variant Dim thatarray As Variant thisarray = Range("range1").Value thatarray = Range("range2").Value counter = 1 While counter <= UBound(thisarray) x = thisarray(counter, 1) y = thatarray(counter, 1) If x = y Then MsgBox "yes" Else MsgBox "no" End If counter = counter + 1 Wend End Sub
  3. Select Sheet2.

  4. On the Tools menu, point to Macro and then click Macro.

  5. In the Macro dialog box, click compare_two_array, and then click Run. You will see one message box for every comparison.

To Fill a Dynamic Array

  1. On a module sheet, type the following code:

    Sub fill_array() Dim thisarray As Variant number_of_elements = 3 'number of elements in the array 'must redim below to set size ReDim thisarray(1 To number_of_elements) As Integer 'resizes this size of the array counter = 1 fillmeup = 7 For counter = 1 To number_of_elements thisarray(counter) = fillmeup Next counter counter = 1 'this loop shows what was filled in While counter <= UBound(thisarray) MsgBox thisarray(counter) counter = counter + 1 Wend End Sub
  2. On the Tools menu, point to Macro and then click Macros.

  3. In the Macro dialog box, click fill_array, and then click Run.

NOTE: Changing the variable "number_of_elements" will determine the size of the array.  

Facebook LinkedIn Email

Need more help?

Want more options?

Discover Community

Explore subscription benefits, browse training courses, learn how to secure your device, and more.

Microsoft 365 subscription benefits

Microsoft 365 training

Microsoft security

Accessibility center

Communities help you ask and answer questions, give feedback, and hear from experts with rich knowledge.

Ask the Microsoft Community

Microsoft Tech Community

Windows Insiders

Microsoft 365 Insiders

Was this information helpful?

Yes No (Send feedback to Microsoft so we can help.) What affected your experience? Resolved my issue Clear instructions Easy to follow No jargon Pictures helped Other Didn't match my screen Incorrect instructions Too technical Not enough information Not enough pictures Other Any additional feedback? (Optional) Submit feedback By pressing submit, your feedback will be used to improve Microsoft products and services. Your IT admin will be able to collect this data. Privacy Statement.

Thank you for your feedback!

×

Từ khóa » Visual Basic Excel Macro Examples