Toaster-Roaster
New Member
- Joined
- Sep 23, 2010
- Messages
- 20
im tring to create a macro button which pastes my selected copied section to a certain column. once one has been pasted it will then paste to the row below e.t.c
Sub Button1_Click()
Const DestCol As String = "A"
Selection.Copy Cells(Rows.Count, DestCol).End(xlUp).Offset(1, 0)
End Sub