0

I can copy and paste from an active sheet and active row to an "Activesheet_Archivesheet" on the next blank line but if I try and cut and paste I cannot find the code to find the next blank line and "paste". Any pointers please? (ie if I have missed a previous post).

Excel VBA

1 Answers1

0

For column A, this selects the next empty row and ignores blanks in the data set.
As you see, it gets the empty row from the bottom.

Range("A" & Rows.Count).End(xlUp).Offset(1).Select
Timothy Alexis Vass
  • 2,526
  • 2
  • 11
  • 30