This is my macro so far. It copies and pastes the last used row under the last used row. I just want it to copy and paste the last row of A-I, but messes up when I try to input it.
Dim lRow As Long
ThisWorkbook.Activate
lRow = Worksheets("Sheet1").Cells(Worksheets("Sheet1").Rows.Count, 1).End(xlUp).Row
Range("A" & lRow).Copy
lRow = lRow + 1
Range("A" & lRow).PasteSpecial
Application.CutCopyMode = False
End Sub
Thanks
Dim lRow As Long
ThisWorkbook.Activate
lRow = Worksheets("Sheet1").Cells(Worksheets("Sheet1").Rows.Count, 1).End(xlUp).Row
Range("A" & lRow).Copy
lRow = lRow + 1
Range("A" & lRow).PasteSpecial
Application.CutCopyMode = False
End Sub
Thanks