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?
Dim lastRow As String
Range("D3").Select
Range(Selection, Selection.End(xlDown)).Select
Selection.Copy...