Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Array Inconsitency

Tags:

arrays

excel

vba

I am having a lot of trouble with some array code here - If I run this:

Sub ArrayRunner()

Dim PipeBArray() As Variant

Dim i As Integer

PipeBArray = ThisWorkbook.Sheets(1).Range("A1:A6").Value

MsgBox Str(UBound(PipeBArray)) & Str(LBound(PipeBArray))

For i = LBound(PipeBArray) To UBound(PipeBArray)
    MsgBox PipeBArray(i)
Next i

MsgBox "Done!"
End Sub

Then I get error 9 - subscript out of range on the line in the for loop - and when I watch the variable 'i' it tells me the value of i is one... so this occurs on the first instance of the for loop.

Can anyone help me see what I am doing wrong here?

Thanks everyone.

Joe

like image 343
AverageJoe Avatar asked Dec 05 '25 03:12

AverageJoe


1 Answers

When you set a range to an array like that, VBA automatically makes it a 2-dimensional array. So you need to reference it like this:

MsgBox PipeBArray(i, 1) 

rather than:

MsgBox PipeBArray(i)

I would recommend this link for more information.

like image 103
dosdel Avatar answered Dec 07 '25 17:12

dosdel