I have an array:

Dim MyArray (1 to 20, 9)

How can a Rediminsion the first part of the array?

Later in the code, I need to increase it's size to an unknown amount: (1 to X, 9)

The '9' never needs to change........ I tried a few different ways of using the ReDim statement, but none have worked.

BTW - I assume you don't loose data already stored when you do this?

Thanks for any help.