View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Bob Umlas[_3_] Bob Umlas[_3_] is offline
external usenet poster
 
Posts: 320
Default move entire column

Sub MoveH()
Columns("H").Cut
Columns("B").Insert
End Sub
"QB" wrote in message
...
How can I move column H over to Column B using VBA. I want to insert it
between the existing Col A And B So that Col H becomes Col B and the
existing Col B becomes C, and so forth...

Thank you

QB