I have a single array of row numbers. I need to create another array, this one multidimensional, to hold all 12 columns of data from just those rows in the first array. The needed rows are not contiguous. I want to avoid the time consuming loops if possible. I'd like to add each entire row on the sheet into each row of the array if possible. This is kind of what I have in mind:
Code:
' Ubound(row_Pointer_Array) = 39427
Redim new_Array( 1 to Ubound(row_Pointer_Array), 1 to 12)
For i = 1 to Ubound(row_Pointer_Array)
new_Array(i) = Range("A" & row_Pointer_Array(i) & ":P" & row_Pointer_Array(i))
Next i