I have data as such:
01a 01aa 01b 01bb 01c 01cc
02a 02aa 02b 02bb 02c 02cc
03a 03aa 03b 03bb 03c 03cc
04a 04aa 04b 04bb 04c 04cc
05a 05aa 05b 05bb 05c 05cc
06a 06aa 06b 06bb 06c 06cc
07a 07aa 07b 07bb 07c 07cc
08a 08aa 08b 08bb 08c 08cc
09a 09aa 09b 09bb 09c 09cc
10a 10aa 10b 10bb 10c 10cc
11a 11aa 11b 11bb 11c 11cc
12a 12aa 12b 12bb 12c 12cc
13a 13aa 13b 13bb 13c 13cc
14a 14aa 14b 14bb 14c 14cc
15a 15aa 15b 15bb 15c 15cc
where
a1 = 01a
a2=02a
a3 = 03a
and
b1 = 01aa
b2 02aa
b3 = 03aa
I want to rearrange the data with a macro as follows:
01a 01aa
01b 01bb
01c 01cc
02a 02aa
02b 02bb
02c 02cc
03a 03aa
03b 03bb
03c 03cc
04a 04aa
04b 04bb
04c 04cc
05a 05aa
05b 05bb
05c 05cc
...etc..
(thats 2 columns, and since it is 15 rows of data, it would be 15*3 =45 rows total when half flattened, and with 2 columns)
Future data might be 20 rows or different number of rows.
Future data might have a blank cell i.e. 13b and 13bb might be blank. in that case, the macro should just skip.
please let me know how to do this!
thank you
jason
ps
i noticed that iti is basically..
inserting 3 rows,
then cut and paste data
then repeat for length (rows) of data.
or another way of saying this is to flatten out all the even columns then flatten the odd columns..
01a 01aa 01b 01bb 01c 01cc
02a 02aa 02b 02bb 02c 02cc
03a 03aa 03b 03bb 03c 03cc
04a 04aa 04b 04bb 04c 04cc
05a 05aa 05b 05bb 05c 05cc
06a 06aa 06b 06bb 06c 06cc
07a 07aa 07b 07bb 07c 07cc
08a 08aa 08b 08bb 08c 08cc
09a 09aa 09b 09bb 09c 09cc
10a 10aa 10b 10bb 10c 10cc
11a 11aa 11b 11bb 11c 11cc
12a 12aa 12b 12bb 12c 12cc
13a 13aa 13b 13bb 13c 13cc
14a 14aa 14b 14bb 14c 14cc
15a 15aa 15b 15bb 15c 15cc
where
a1 = 01a
a2=02a
a3 = 03a
and
b1 = 01aa
b2 02aa
b3 = 03aa
I want to rearrange the data with a macro as follows:
01a 01aa
01b 01bb
01c 01cc
02a 02aa
02b 02bb
02c 02cc
03a 03aa
03b 03bb
03c 03cc
04a 04aa
04b 04bb
04c 04cc
05a 05aa
05b 05bb
05c 05cc
...etc..
(thats 2 columns, and since it is 15 rows of data, it would be 15*3 =45 rows total when half flattened, and with 2 columns)
Future data might be 20 rows or different number of rows.
Future data might have a blank cell i.e. 13b and 13bb might be blank. in that case, the macro should just skip.
please let me know how to do this!
thank you
jason
ps
i noticed that iti is basically..
inserting 3 rows,
then cut and paste data
then repeat for length (rows) of data.
or another way of saying this is to flatten out all the even columns then flatten the odd columns..