how to copy entire row into next row

  • Thread starter Thread starter john_liu
  • Start date Start date
J

john_liu

how can i copy an entrie row into the next row by macro. Thanks for your
help
 
this will copy the active row down one

Sub copyentirerow()
Rows(ActiveCell.Row).Copy Rows(ActiveCell.Row + 1)
End Sub
 

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