I am working with a dataset in excel that is organized like this with 60 more time intervals:
(Time 0)
1 2 3 4 5 -> 12
A 0 0 0 0 0
B 0 0 0 0 0
C 0 0 0 0 0
D 0 0 0 0 0
...
H 0 0 0 0 0
I want the output to be organized in this format were column 2 is under column 1, column 3 is under 2 etc. So it would look something like this:
Time 0 Time 10
A1 0
B1 0
C1 0
D1 0
E1 0
F1 0
G1 0
H1 0
A2 0
B2 0
C2 0
D2 0
The next column would take the data from the Time 10 interval and so on so forth. There are 61 time intervals hence the need for some sort of macro that would enable this relatively quickly.
Currently I have just set my macro to select, copy, select new area, paste but I know there has to be a faster way to do this. Any help would be appreciated!