Hi,
I'm using a 2 dimention array and need to redim it which works fine with the statement below:
Code:
ReDim  sa_tableKeys(UBound(sa_tableKeys) + 1, 2) As String
But as soon as I put "preserve" after ReDim, to preserve the information already stored within the array, I get an error. What am I doing wrong?