Filling an Array

K

kirkm

Dim a(4,2)

Is there any way to implement

a(0 to 4,0) = Split ("22,33,44,55,66",",")
a(0 to 4,1) = Split etc etc.

Or must each array element be assigned individually?

Thanks - Kirk
 
L

Lori

a = array(split("1 2 3"),split("1 2 3 4")): ?a(1)(3)

maybe? (returns 4 from the immediate window)
 
K

kirkm

a = array(split("1 2 3"),split("1 2 3 4")): ?a(1)(3)

maybe? (returns 4 from the immediate window)

Thanks Lori, I'd forgotten about Array.Opens up
some nice possibilites.

Cheers - Kirk
 
Top