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

When did Power Query debut in Excel?
Although it was an add-in in Excel 2010 & Excel 2013, Power Query became a part of Excel in 2016, in Data, Get & Transform Data.
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,219,162
Messages
6,146,660
Members
450,706
Latest member
LGVBPP

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