Inserting multiple columns

  • Thread starter Thread starter Mitch
  • Start date Start date
M

Mitch

Is there a simpler way to insert 5 columns other than the
following:

ActiveCell.Offset(0, 12).EntireColumn.Select
Selection.Insert Shift:=xlToRight
Selection.Insert Shift:=xlToRight
Selection.Insert Shift:=xlToRight
Selection.Insert Shift:=xlToRight
Selection.Insert Shift:=xlToRight

Thanks for the help
 
Hi
try
ActiveCell.Offset(0, 12).Resize(1,5).EntireColumn. _
Insert Shift:=xlToRight
 

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