br_turnbull wrote:
> . . . how would i go about adding to the end of array no matter how many
> values are already stored in it?
> . . . .


If the stored values are all in the lowest indexed elements of a
one-dimensional array

MyArray(Application.CountA(MyArray)+1) = "addedValue"

Alan Beban