Hello,
I have a large array that has is currently setup in 10 columns and 4050 rows. However, I am trying to get the data in the format of 162 rows by 248 columns by appending rows with data from below, and then tightening once 248 columns have been reached.

The example is well illustrated with this simple example:
We start with this array:
1 2 3
4 5 6
7 8 9
10 11 12
13 14 15
16 17 18

and we are looking for an array that looks like this:
1 2 3 4 5 6 7 8 9
10 11 12 13 14 15 16 17 18

where the value 9 in the example would be 248 (columns) for my real problem.

Anyone, have any quick fixes?
Thanks so much!