Copying Rows of Data to Single Column for Chart
Posted by Bruce J on January 14, 2001 6:03 PM
I am looking to create a column of data to plot. The
existing format of my data is one day per row, with 24 columns of
hourly data columns per day. I would like to be able
to copy the daily hourly data to a single column for
plotting a month's or even year's worth of data.
Here's a shortened example of what I would like to do:
Data:
A B C D E F
1 2 3 4 5 6
K L M O P Q
0 9 8 7 6 5
Would like to have the following column of data:
A
B
C
D
E
F
1
2
3
4
5
6
K
L
M
N
O
P
Q
0
9
8
7
6
5
Is there a fairly easy macro to be able to do this?
Thank you.
-- Bruce J