Copy & Paste Problem

joethoden

New Member
Joined
Aug 25, 2004
Messages
32
In a workbook I am creating Sheet 1 contains entries for each day of the year. I am looking for a way to Copy & Paste every 40th cell in a column & paste them into a column on Sheet 2 without haveing to do each one seperately. Anyone have any ideas? Thanks
 

Excel Facts

Pivot Table Drill Down
Double-click any number in a pivot table to create a new report showing all detail rows that make up that number
How about:

Dim mycount as Integer, i as Integer

For i = 1 to (how ever many rows you've got)
Worksheet("Sheet1").activate
myrow = 40*1
cells(myrow, whatever column you want).select
Selection.Copy
Worksheets("Sheet2").activate
Cells(i,whatever column you want).select
selection.paste
next i
 
Upvote 0

Forum statistics

Threads
1,213,494
Messages
6,113,981
Members
448,538
Latest member
alex78

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