Macro, copying last column to the one after it

Fro

New Member
Joined
Mar 19, 2002
Messages
6
Hey
I'm trying to create macro which goes to the last column that has data in it, copying it to the one after that.

eg: I have a couple of values in column C. I want to copy this, by using a macro, to column D. Then, the next time I run the macro I want it to copy the values in column D to column E... and so on.

I know my explanation is bad, but I hope you'll understand.

Cheers
Fro
 

Excel Facts

What is the fastest way to copy a formula?
If A2:A50000 contain data. Enter a formula in B2. Select B2. Double-click the Fill Handle and Excel will shoot the formula down to B50000.
Assuming you have data in all the columns in row 1, you can use:

Dim LastColumn As Integer

LastColumn = Range("A1").End(xlToRight).Column
Columns(LastColumn).Copy _
Destination:= _
Columns(LastColumn + 1)

Regards,
 
Upvote 0
Great!
It works nicely, now I can finally create a fully automatic updating system for a page ranking the world's best Super Monkey Ball players :)

Thank's a lot!
 
Upvote 0

Forum statistics

Threads
1,214,560
Messages
6,120,217
Members
448,951
Latest member
jennlynn

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top