I received this in an e-mail newsletter:
that mentions using an array of an arrays. However, they do not indicate how to access the elements.
My question is:
How do I access each element of the array x?
Nothing I have tried (x(0), x(1) etc.) works!
Thanks in advance,
Chalmers
Code:
Dim x, y
y = array(1, 2, 3)
x = Array(y, array(3, 4, 5), array(6, 7, 8))
that mentions using an array of an arrays. However, they do not indicate how to access the elements.
My question is:
How do I access each element of the array x?
Nothing I have tried (x(0), x(1) etc.) works!
Thanks in advance,
Chalmers