How do I set up an "add a line" macro in Excel?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am trying to record a macro to simply add a line (row) to a spreadsheet.
I've had no problem making the macro, however I need to line to be added
under the previous line, not above, and I can't figure out how to do that.

Any advice would help. Thank you in advance.
 
Tracy,

Insert starting at the line below, as in:

ActiveCell.Offset(1, 0).EntireRow.Insert

HTH,
Bernie
MS Excel MVP
 

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