I am trying to transpose 100 years of daily data into a single column.
I have rows and columns of daily data I know you can transpose data row by row. I also saw a previous thread to transpose multiple rows into one column (http://chandoo.org/forums/topic/transposing-multiple-rows-into-one-column) but the solution posted does not work when the data range isn't rectangular eg
1 2 3
4 5 6
7 8 9
covert to
1
2
3
4
5
6
6
etc
But I have
1 2 3 4 5
6 7 8 9
10 11 12 13
14 15 16 17 18
19 20 21 22
and i want it as:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 etc etc
If I try to use =INDEX(MyData,1+INT((ROW(A1)-1)/COLUMNS(MyData)),MOD(ROW(A1)-1+COLUMNS(MyData),COLUMNS(MyData))+1)
It wont't work. I can't substitute zero in to make the range rectangular as this will skew my results.
I am absolutely useless at excel and have 100 years of daily data to transpose and my time is running out!
Anybody have any suggestions?
I have rows and columns of daily data I know you can transpose data row by row. I also saw a previous thread to transpose multiple rows into one column (http://chandoo.org/forums/topic/transposing-multiple-rows-into-one-column) but the solution posted does not work when the data range isn't rectangular eg
1 2 3
4 5 6
7 8 9
covert to
1
2
3
4
5
6
6
etc
But I have
1 2 3 4 5
6 7 8 9
10 11 12 13
14 15 16 17 18
19 20 21 22
and i want it as:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15 etc etc
If I try to use =INDEX(MyData,1+INT((ROW(A1)-1)/COLUMNS(MyData)),MOD(ROW(A1)-1+COLUMNS(MyData),COLUMNS(MyData))+1)
It wont't work. I can't substitute zero in to make the range rectangular as this will skew my results.
I am absolutely useless at excel and have 100 years of daily data to transpose and my time is running out!
Anybody have any suggestions?