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

How to show all formulas in Excel?
Press Ctrl+` to show all formulas. Press it again to toggle back to numbers. The grave accent is often under the tilde on US keyboards.
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,213,534
Messages
6,114,184
Members
448,554
Latest member
Gleisner2

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