notuserfriendly
Programmer
Hi everybody
i've got a problem, I load a sheet into an array
every sheet is indexed 0 to n
every row is then also given an array
Array(index)(index2,index3) according to the debugger
It says that the size of Array(index)(index2) is X
the problem is that I want to loop thru index2
but I can't. What am I doing wrong? Anybody?
I
i've got a problem, I load a sheet into an array
every sheet is indexed 0 to n
every row is then also given an array
Array(index)(index2,index3) according to the debugger
It says that the size of Array(index)(index2) is X
the problem is that I want to loop thru index2
but I can't. What am I doing wrong? Anybody?
I
Code:
For index = 0 To UBound(Obj)
For index2 = LBound(Obj) To UBound(Obj)
For index3 = LBound(Obj(index)(index2) To UBound(Obj(index)(index2))
If StrComp(Obj(index)(index2, index3), VAR) = 0 Then
IknewIt = true
End If
Next index3
Next index2
Next index