View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Alan Beban[_2_] Alan Beban[_2_] is offline
external usenet poster
 
Posts: 783
Default Dynamic 2-Dim Array

kAVAL wrote:
Is it possible to have a dynamic 2 dim array?

The only way I can find to do this is to create several
single dimension arrays.

Kaval

Not entirely sure I understand what you mean, but after

Dim arr()

arr is a dynamic array. I.e., it can be redimensioned as often as desired.

Perhaps you could post something that illustrates your problem.

Alan Beban