J
James B
I'm trying to figure out how to populate an array variable
in VBA without using something similar to the code below:
ReDim a(1 To 4)
a(1) = 2
a(2) = 3
a(3) = 5
a(4) = 7
Can this be done with a single line of code? Also, can I
populate a single section of a multidimensional array with
something like the following?
beta(7,3 to 14)= ..... the values for those points in the
array
Any help is certainly appreciated. I've been doing this
the long way for years, and it is driving me crazy!
in VBA without using something similar to the code below:
ReDim a(1 To 4)
a(1) = 2
a(2) = 3
a(3) = 5
a(4) = 7
Can this be done with a single line of code? Also, can I
populate a single section of a multidimensional array with
something like the following?
beta(7,3 to 14)= ..... the values for those points in the
array
Any help is certainly appreciated. I've been doing this
the long way for years, and it is driving me crazy!