Hi,
First attempt to creating an array of arrays and could you use guidance. I have declared the array:
Then I tried to redimension it (failed)
Finally will be filling the arrays:
How do I get this working?
AMAS
First attempt to creating an array of arrays and could you use guidance. I have declared the array:
Code:
Dim arrTemp As Variant
Then I tried to redimension it (failed)
Code:
ReDim Preserve arrTemp (1)(1 to 500)
ReDim Preserve arrTemp (2)(1 to 500)
ReDim Preserve arrTemp (3)(1 to 500)
Finally will be filling the arrays:
Code:
arrTemp(1)(1) = "First array, first element"
arrTemp(2)(2) = "Second array, second element"
arrTemp(3)(3) = "Third array, third element"
How do I get this working?
AMAS