B
Bob
Amendment need to Macro !
This macro copies a cell down every 72 cells till 5112, Is it possible to
have a Macro copy a selection of cells down the same after highlighting
them?
Public Sub CopySelectionEvery72UntilRow5112()
Dim i As Long
Dim destRng As Range
With Selection(1)
Set destRng = .Cells
For i = .Row + 72 To 5112 Step 72
Set destRng = Union(destRng, Cells(i, .Column))
Next i
.Copy destRng
End With
End Sub
--
Thanks in advance for your help....Bob Vance
..
..
..
..
This macro copies a cell down every 72 cells till 5112, Is it possible to
have a Macro copy a selection of cells down the same after highlighting
them?
Public Sub CopySelectionEvery72UntilRow5112()
Dim i As Long
Dim destRng As Range
With Selection(1)
Set destRng = .Cells
For i = .Row + 72 To 5112 Step 72
Set destRng = Union(destRng, Cells(i, .Column))
Next i
.Copy destRng
End With
End Sub
--
Thanks in advance for your help....Bob Vance
..
..
..
..