Hello all, first time posting here!
How can I modify this code to always look for the next available line? when I run this it just overrides whatever is already there.
Any help would be GREATLY appreciated! TIA
How can I modify this code to always look for the next available line? when I run this it just overrides whatever is already there.
Any help would be GREATLY appreciated! TIA
Code:
Sub add_diagnosticdeliverable()
'
' add_diagnosticdeliverable Macro
'
'Copy the data
Sheets("Deliverable Master List").Range("A3:I13").Copy
'Activate the destination worksheet
Sheets("Template").Activate
'Select the target range
Range("A2").Select
'Paste in the target destination
ActiveCell.Offset(1, 0).Range("A1").Select
ActiveSheet.Paste
Application.CutCopyMode = False
End Sub