insert cells

J

JLGWhiz

The command is:

Range("C80:F80").Insert

If you want to insert complete rows, then:

Range("C80").EntireRow.Insert

Or

Rows(80).Insert

If you want the blank cells to be below row 80 then:

Rows(81).Insert

Because the named row is automatically shifted and the default direction is
down.
 

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

Top