Sub copy_down()
y = ActiveCell.Column
x = ActiveCell.Row
txt = ActiveCell.Value
' I need this to copy down 65 cells
For i = 1 To 65
Cells(x + i, y).Select
Selection.Value = txt
Next i
End Sub
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.