Hi guys, Im trying to put convert an initial N x 1 data, such that, for every 2nd term, it goes to the 2nd column and the 3rd term to the third column. This goes on for the remaining data.
e.g.
1 2 3 4 5 6 7 8 9
to become:
1 2 3 4 5 6 7 8 9
I have this small VBA script:
However when running this, it gives me instead:![]()
Please Login or Register to view this content.
1 2 3 3 4 5 5 6 7 7 8 9
Can someone let me know what is wrong with my VBA code?
Thanks!
Bookmarks