Hi Guys
I want to insert columns into my sheet. It has some columns filed say 10. I have a VBA formula which inserts one column. I cant work out how to alter it to add say 3 blank columns. I know that the 30 will need to be increased to allow for more columns and it would be sweet if this was automatic. Have not loaded an example but if you want one please ask. I got this code from "http://www.extendoffice.com/documents/excel/798-excel-insert-blank-column-every-other-column.html"

Range("A1").Select
            For colx = 2 To 30 Step 2
            Columns(colx).Insert Shift:=xlToRight
    Next
Any suggestions
Mark