Check out the ReDim method in VBA help.
Thanks, I can see that this resizes teh array but still not sure how to add
to the array.
Maybe I'm missing something here!!#
Cheers
Steve
> Check out the ReDim method in VBA help.
>
[quoted text clipped - 14 lines]
> >
> > Steve
Alan Beban - 29 May 2008 19:56 GMT
Dim a
ReDim a(1 to 4)
a=Array(1,2,3,4)
ReDim Preserve a(1 to 5)
a(5)=5
Alan Beban
> Thanks, I can see that this resizes teh array but still not sure how to add
> to the array.
[quoted text clipped - 23 lines]
>>>
>>>Steve