insert cells

  • Thread starter Thread starter pls123
  • Start date Start date
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.
 
Back
Top