Hi all,
I hope someone can help, I'm at my wits end! have a large data set that represents births by age of the mother for each county. Mother's age is represented on my x axis, the county code on my y axis, and the birth counts for each age are reflected in a single row for each county.
I am trying to convert the rows into a single column while preserving the order in which the values are entered. For example:
15 years old 16 years old 17 years old 18 years old
Alcona County 3 7 8 9
Berrien County 1 0 4 11
Would be transposed as:
3
7
8
9
1
0
4
11
I really don't want to copy/past, because I have many years worth of datasets I have to do this to and it will be time consuming (not to mention more prone to human error).
Any recommendations? Thanks in advance!!!
I hope someone can help, I'm at my wits end! have a large data set that represents births by age of the mother for each county. Mother's age is represented on my x axis, the county code on my y axis, and the birth counts for each age are reflected in a single row for each county.
I am trying to convert the rows into a single column while preserving the order in which the values are entered. For example:
15 years old 16 years old 17 years old 18 years old
Alcona County 3 7 8 9
Berrien County 1 0 4 11
Would be transposed as:
3
7
8
9
1
0
4
11
I really don't want to copy/past, because I have many years worth of datasets I have to do this to and it will be time consuming (not to mention more prone to human error).
Any recommendations? Thanks in advance!!!