Help with Resize

  • Thread starter Thread starter Les
  • Start date Start date
L

Les

Hi all,

sColumn = A

i have this code - Columns(sColumn).Offset(0, 1).Insert Shift:=xlToRight

It works ok but i want it to resize to 2 columns so that it inserts 2 new
columns at B so that B & C are blank rows.

Any help much appreciated.
 
One way:

Columns(sColumn).Offset(0, 1).Resize(, 2).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