#1   Report Post  
Posted to microsoft.public.excel.programming
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!
  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 6,953
Default ReDim Array

Private arrayMaker(index As Integer)
Dim varray() As Variant
if index = 0 then
redim varray(0 to 2)
varray(0) = "Interest rate"
varray(1)="Delta"
varray(2)=...etc.
end if
if index =1....etc..
Redim varray(0 to 10)
end if

.. . .
End Sub

--
Regards,
Tom Ogilvy


"Viktor Ygdorff" wrote:

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!

  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 29
Default ReDim Array

Great thanks! Is there any way of counting the input data so that if new info
is to be added to the array you dont have to change the dimension but just
add another line with the data? That would be very nice but your code works
fine! Thank you ver much!

"Tom Ogilvy" skrev:

Private arrayMaker(index As Integer)
Dim varray() As Variant
if index = 0 then
redim varray(0 to 2)
varray(0) = "Interest rate"
varray(1)="Delta"
varray(2)=...etc.
end if
if index =1....etc..
Redim varray(0 to 10)
end if

. . .
End Sub

--
Regards,
Tom Ogilvy


"Viktor Ygdorff" wrote:

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!

Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
VBA syntax help: ReDim Preserve an array Dave Excel Discussion (Misc queries) 4 September 8th 07 07:37 PM
ReDim Object array as parameter of Variant array Peter T Excel Programming 4 May 10th 05 02:11 PM
Dim / Redim of an Array Fred[_17_] Excel Programming 4 June 28th 04 03:16 PM
Redim 2D Array Subscript Out Of Range Error lopsided[_10_] Excel Programming 6 February 11th 04 08:24 AM
ReDim an Array Art[_5_] Excel Programming 3 October 25th 03 03:30 PM


All times are GMT +1. The time now is 03:20 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"