I'm having a hard time converting this excel macro into vbscript...it cuts column C and inserts the cells into column B, shifting column B down to C.
I was thinking something similar to this:
But I have not found anything on the web about this...can anyone help?
Code:
Sub Move_Columns()
Columns("C:C").Select
Selection.Cut
Columns("B:B").Select
Selection.Insert Shift:=xlToRight
End Sub
I was thinking something similar to this:
Code:
objExcel.Columns("C:C").Cut
But I have not found anything on the web about this...can anyone help?