Mark/copy specific cells in a column, in increments of x

EVriderDK

New Member
Joined
Feb 18, 2016
Messages
2
If have something in increments of 3, ex. A3 A6 A9 A12 A15 etc. how do I select those or copy them into new sheet?

Thank you in advance.
 

Excel Facts

Did you know Excel offers Filter by Selection?
Add the AutoFilter icon to the Quick Access Toolbar. Select a cell containing Apple, click AutoFilter, and you will get all rows with Apple
Try this

Sub Copy_non_adjacentCells()


Set R = Cells(3, 1)
For i = 3 To 200 Step 3
Set R = Union(R, Cells(i, 1))
Next
R.Copy


End Sub
 
Upvote 0
Try something like this:
This script will copy values from Active sheet to sheet (2)
It will do this 30 times

Code:
Sub Copy_By_Three()
Dim i As Integer
    
    For i = 3 To 30 Step 3
        Cells(i, 1).Copy Destination:=Sheets(2).Cells(i, 1)
    Next

End Sub
 
Upvote 0
Try something like this:
This script will copy values from Active sheet to sheet (2)
It will do this 30 times

Code:
Sub Copy_By_Three()
Dim i As Integer
    
    For i = 3 To 30 Step 3
        Cells(i, 1).Copy Destination:=Sheets(2).Cells(i, 1)
    Next

End Sub

It worked! Thank you very much :)
 
Upvote 0

Forum statistics

Threads
1,214,516
Messages
6,119,980
Members
448,934
Latest member
audette89

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