Hello, I do not program VBA and I am not able to make a code that would do the following:
|A |B |C | ---------- |1 |6 |11| |2 |7 |12| |3 |8 |13| |4 |9 |14| |5 |10|15|
My table has several columns like these up there, I would like you to help me with a routine that would read from column B and always put under column A, in this case would be in sequence from 1 to 15 in column A, Is this possible?
Result:
|A | - |1 | |2 | |3 | |4 | |5 | |6 | |7 | |...| |14 | |15 |