Thread: ReDim Array
View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.programming
Viktor Ygdorff Viktor Ygdorff is offline
external usenet poster
 
Posts: 29
Default ReDim Array

I have an array that I use for many different things. Thus the size of the
array may vary depending on the different tasks. I declare the array in a sub
and then poulate the array with contents depending on an index number that
has been sent to the sub. Code:

Private arrayMaker(index As Integer)
Dim array(1 to 100) As Variant
if index = 0 then
array(0) = "Interest rate"
array(1)="Delta"
rayy(2)=...etc.
end if
if index =1....etc..
end if

As you can see there is no point in setting one size for every array.
Instead I want to ReDim the array depending on the number of inputs I use.
How do you do this? Thanks!