Cut & delete row in 1 step

  • Thread starter Thread starter Sherry
  • Start date Start date
If I understand you correctly, if you delete a row it is cut. you can use
cut in a maco to move info.
Sub cutrow()
Rows(3).Cut Sheets("sheet2").Rows(2)
End Sub
 
I'm guessing that the OP really wanted the remaining rows shifted up.

This left an empty row 3 for me.

I've always deleted the row after cutting|pasting.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top