How to copy entire row into next row by macro

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

john_liu

How can I copy an entire row into the next row by a macro. Thanks for your
help.
 
John

I doubt this is the full extent of your request, but to do literally what
you ask. Works by copying entire row of the selected cell(s)

Sub CopyToRowDown()
Selection.EntireRow.Copy Destination:=Selection.Offset(1, 0)
End Sub

--
HTH
Nick Hodge
Microsoft MVP - Excel
Southampton, England
(e-mail address removed)
 

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