View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Karthik Bhat - Bangalore Karthik Bhat - Bangalore is offline
external usenet poster
 
Posts: 25
Default Introduce new column using VBA macros

Hi Swamy

This code should work assuming that your first column is "A" (if not
change the column number in the code appropriately.

Sub InsertColumn()
Columns("E:E").Select
Selection.Insert Shift:=xlToRight
End Sub

Thanks and Regards
Karthik Bhat
Bangalore