Hi All,
I'm guessing there is a really easy solution to this . . .
Assuming I've got a multidimentional array as below:
where x is variable and defined by a load process in a separate function. I could pass the total through to the child sub routine, however, that feels messy and I believe there should be an internal function to do this. I have tried the following
But it's erroring with "Invalid Qualifier"
Thanks for any help in advance,
Fitz
Did you know, there are 10 types of people in this world:
* Those who understand binary
and
* Those who Don't!!
I'm guessing there is a really easy solution to this . . .
Assuming I've got a multidimentional array as below:
Code:
Dim arrData(1, 10) As String
where x is variable and defined by a load process in a separate function. I could pass the total through to the child sub routine, however, that feels messy and I believe there should be an internal function to do this. I have tried the following
Code:
Dim arrData(1, 10) As String
MsgBox arrData.getLength(1)
But it's erroring with "Invalid Qualifier"
Thanks for any help in advance,
Fitz
Did you know, there are 10 types of people in this world:
* Those who understand binary
and
* Those who Don't!!