View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
kirkm[_8_] kirkm[_8_] is offline
external usenet poster
 
Posts: 166
Default Filling an Array


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