Macro deletes top line copied data
Posted by Dave on February 21, 2001 2:18 PM
I know I'm missing a command line to move the copied data down one row & then paste it. I just can't find the command. Any help?
This is the macro
Sub MoveSalesData()
'
' MoveSalesData Macro
' Macro recorded 2/19/2001 by Dave
'
' Keyboard Shortcut: Ctrl+m
'
Application.Goto Reference:="R3C1"
Range(Selection, Selection.End(xlDown)).Select
Range(Selection, Selection.End(xlToRight)).Select
Selection.Copy
Sheets("Sheet2").Select
Application.Goto Reference:="R4004C1"
Selection.End(xlUp).Select
ActiveSheet.Paste
Sheets("Sheet1").Select
Application.CutCopyMode = False
Selection.ClearContents
Range("A3").Select
End Sub