View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Chip Pearson Chip Pearson is offline
external usenet poster
 
Posts: 7,247
Default Declaring a dynamic array

Srdjan,

Try something like the following:

Dim Arr() As Long
Dim N As Long
N = 10
Redim Arr(1 To N)




--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com



"Srdjan Kovacevic" wrote in
message ...
Can anyone explain how to declare an array of form:

Arr(X1, X2, ..., Xn)

Where n is user defined variable?

How would I read/write data from such an array?

Thanx in advance!

srdjan