Home |
Search |
Today's Posts |
#1
![]()
Posted to microsoft.public.excel.programming
|
|||
|
|||
![]()
I'm trying to load an array into a list box. When I execute the following
macro, it tells me that I have a subscript out of range for the AddItem code. Sub PopulateListBox() Dim MyArray As Variant Dim Ctr As Integer MyArray = Sheet1Range("A1:A4").Value For Ctr = LBound(MyArray) To UBound(MyArray) UserForm1.ListBox1.AddItem MyArray(Ctr) Next UserForm1.Show End Sub |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Forum | |||
Array Formulas - Unique List from List with Duplicates | Excel Discussion (Misc queries) | |||
Count rows in text file by loading into array | Excel Programming | |||
Loading Excel Array from VB Array Faster | Excel Programming | |||
Loading Excel Arrange into VBA array | Excel Programming | |||
Loading 3 Dimensional Array | Excel Programming |