View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
dsh dsh is offline
external usenet poster
 
Posts: 5
Default Dynamic multi-dimensional array


Is it possible to create a dynamic multi-dimensional array? I know the
following will not work, but something to the effect:

dim arr()

dim s as string

s = "5, 6, 10"

redim arr(s) 'i.e. redim arr(5, 6, 10)

Thanks.