E
Ed
I have strings belonging to different series - A, B, C, and D - that I want
to write to a corresponding array - aryA(), aryB(), aryC(), or aryD(). I
will ReDim each array before I write the next string using a variable "x" to
represent the next number. What is the right way to refer to the correct
array? I've tried the following with no luck
-- Assign a variable (such as "Y") to the correct series and use
ReDim ary & Y(x)
-- Assign a variable to whole array name and use
ReDim Y(x)
-- Assign a variable to whole array name and use
ReDim Array("Y")(x)
Any help?
Ed
to write to a corresponding array - aryA(), aryB(), aryC(), or aryD(). I
will ReDim each array before I write the next string using a variable "x" to
represent the next number. What is the right way to refer to the correct
array? I've tried the following with no luck
-- Assign a variable (such as "Y") to the correct series and use
ReDim ary & Y(x)
-- Assign a variable to whole array name and use
ReDim Y(x)
-- Assign a variable to whole array name and use
ReDim Array("Y")(x)
Any help?
Ed