Hi.
I'm looking for advice on how to update my simple macro. I would like it to copy selected data from Sheet 1, and paste into the next empty row in Sheet 2, before deleting it from sheet 1.
Here's what I have so far:
Range("B2:F2").Select
Selection.Copy
Sheets("Sheet 2").Select
Range("A2").Select
ActiveSheet.Paste
Sheets("Sheet 1").Select
Application.CutCopyMode = False
Selection.ClearContents
End Sub
Is anyone able to help explain what instruction is needed to ensure the data is pasted into the next empty row?
Thank you.
I'm looking for advice on how to update my simple macro. I would like it to copy selected data from Sheet 1, and paste into the next empty row in Sheet 2, before deleting it from sheet 1.
Here's what I have so far:
Range("B2:F2").Select
Selection.Copy
Sheets("Sheet 2").Select
Range("A2").Select
ActiveSheet.Paste
Sheets("Sheet 1").Select
Application.CutCopyMode = False
Selection.ClearContents
End Sub
Is anyone able to help explain what instruction is needed to ensure the data is pasted into the next empty row?
Thank you.