View Single Post
  #5   Report Post  
Posted to microsoft.public.excel.programming
Mishell[_3_] Mishell[_3_] is offline
external usenet poster
 
Posts: 22
Default How to initialize a multi-dimensional array

You can initialize or reinitialize a multi-dimensional array with the Redim
instruction :
ReDim MyArray(1 To 3, 2 To 5, 1 To 2)

Mishell

a écrit dans le message de news:
...
I have tried to search the web, but have now found a good way to initialize
a two (or more) dimensional array. Its easy in most other languages. Is
there a good way to do it in excel vab?

Thanks!