So here is another solution to add to the collection 
But First.......
_1)
As kalbasiatka said No one but you knows what should be the result. It is always best to demonstrate to us ( preferably with reduced size, desensitised data ) exactly what You want
Both Akuini’s and jindon codes work for me.
Jindon’s goes ( strangely ? ) through all rows first, then columns. ( I thought VBA and Excel always went from right to left then top to bottom? Maybe a Arr is different)
Akuini’s is made to go through each column before going down a row.
I do not feel like doing Pike’s solution way just now, ( although at first glance it does seem to be explained very well ), but I would like to see it applied to your application as another interesting solution, How about it Pike ?
My Guess was that you wanted rows then columns, as you have confirmed now. My Code does that.
Note All codes just give you Values Out
To demo first on reduced data for our three codes.
Say this is your Data
Using Excel 2007
Row\Col |
F |
G |
H |
21 |
f21 |
g21 |
h21 |
22 |
f22 |
g22 |
h22 |
23 |
f23 |
g23 |
h23 |
_.....
then using a version of code from Akuini
You get this:
Using Excel 2007
Row\Col |
AX |
1 |
f21 |
2 |
g21 |
3 |
h21 |
4 |
f22 |
5 |
g22 |
6 |
h22 |
7 |
f23 |
8 |
g23 |
9 |
h23 |
_...............................................
Or
using a version of code from jindon
You get
Using Excel 2007
Row\Col |
AX |
1 |
f21 |
2 |
f22 |
3 |
f23 |
4 |
g21 |
5 |
g22 |
6 |
g23 |
7 |
h21 |
8 |
h22 |
9 |
h23 |
_...........................................
_... OK back to mother code alternative.
_....
_2 ) Here is my equivalent code ( to Akuini’s) . It gives the same results as Akuini’s
Here for the reduced input Range
Main Code for reduced Data
Here the code for what we guessed was your wanted Output Range
Main Code for Full input Range
As you can see the difference is very little, but the reduced example is better to follow and understand in the Thread.
My Codes are very flexible: You just change the
Input range
and
Top Cell Range
of where the output should go.
Note: For both my codes you need also this Function. Just copy it to the same Module that your main code is in. There are simple Functions to do that BTW. Just that seemed the quickest. Many of those are explained in detail here:
http://www.excelforum.com/tips-and-t...explained.html
A Function to get Column Letter from Column Number
_..................................................
There you go... or almost....

Originally Posted by
Jonathan78
.....I go for akuinis solution ......because I found yours harder to understand
I do not like to use codes I do not understand. Mine is very hard to understand , but if you can you would learn a lot. For the benefit of anyone interested, in the next post I explain it in full detail, ( For ease of explanation it works on the reduced size data I gave in the first screen shot above.
Bookmarks