RachelBrown
New Member
- Joined
- Jul 6, 2017
- Messages
- 11
I have a macro that adds data to the bottom of a column, it worked the first time but it keeps pasting in different spots in my worksheet. Can someone spot what is wrong?
Code:
Dim lastRow As String
Range("D3").Select
Range(Selection, Selection.End(xlDown)).Select
Selection.Copy
Sheets("Notes").Select
lastRow = ActiveSheet.Cells(Rows.Count, "A").End(xlUp).Row + 1
ActiveSheet.Paste
Application.CutCopyMode = False