This Macro moves a chosen Row to another workbook and pastes it , leaving a blank row in the initial workbook
When Completed the Initial Workbook has a Blank Row. When the macro was run the Height of the Row that was Cut is variable ( usually 60 - 120 ) depending on content. But, when completed the remaining blank row is about 8 high. I would like to have it blank at 60 but dont know how to refer to that row in my code to adjust the height of the remaining blank row.
Help to do so would be much appreciated.
Thank You
Code:
Sub OpenToSold5()
' Keyboard Shortcut: Ctrl+Shift+W
Dim lRow As Long
Dim lCol As Long
Rows(ActiveCell.Row).Cut
Windows("AMZ-GM Sold.xlsm").Activate
lRow = ActiveSheet.Cells.SpecialCells(xlLastCell).Row
ActiveSheet.Cells(lRow + 1, 1).Activate
ActiveSheet.Paste
End Sub
When Completed the Initial Workbook has a Blank Row. When the macro was run the Height of the Row that was Cut is variable ( usually 60 - 120 ) depending on content. But, when completed the remaining blank row is about 8 high. I would like to have it blank at 60 but dont know how to refer to that row in my code to adjust the height of the remaining blank row.
Help to do so would be much appreciated.
Thank You