#1 ·
Walter Jackson48 said:Perhaps this specific formula might prove useful to you:
=OFFSET(COLONA;COLUMN()-COLUMN($E$1)+((ROW()-ROW($E$1))*(ROWS(COLONA)/1));0;1;1).
To explain the logic, imagine you have, say, 10 numbers entered in Column B. You would select those values and assign them the name "COLONA" via the Name Manager (found under the Insert tab). Once that is established, if you enter this formula into cell E1 and then drag it to the right, it will distribute all 10 numbers horizontally. The division by 1 at the end dictates that the column data fills a single row; should you desire the data to wrap into two rows, you would simply change that value to "/2". It is much like arranging books on a shelf versus stacking them in two tiers.
Alternatively, there is an even more straightforward approach: simply copy the numbers from your column, navigate to the starting cell where you want the row to begin, right-click, select Paste Special, choose Transpose, and click OK.
The second method is significantly more efficient! Thank you very much.
