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

Format cells as date
Select range and press Ctrl+Shift+3 to format cells as date. (Shift 3 is the # sign which sort of looks like a small calendar).
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,943
Messages
6,122,369
Members
449,080
Latest member
Armadillos

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