B
Bob Vance
--
After searching google.groups.com and finding no answer, Bob Vance asked:
Slight change needed for VBA Code
This macro cuts and paste, but I want it to select and move them 9 Columns
Sub MoveMacrosOver()
Cells(1, Cells(1, 256).End(xlToLeft).Column + 1).Select
Range(ActiveCell.Offset(0, -9), ActiveCell.Offset(6000, -9)).Select
Selection.Cut
Range(ActiveCell.Offset(0, 9), ActiveCell.Offset(6000, 9)).Select
ActiveSheet.Paste
End Sub
Something like this but not using the absolute Colomn names
Columns("R:R").Select
Selection.Cut Destination:=Columns("AA:AA")
Columns("AA:AA").Select
Thanks in advance.........Bob Vance
After searching google.groups.com and finding no answer, Bob Vance asked:
Slight change needed for VBA Code
This macro cuts and paste, but I want it to select and move them 9 Columns
Sub MoveMacrosOver()
Cells(1, Cells(1, 256).End(xlToLeft).Column + 1).Select
Range(ActiveCell.Offset(0, -9), ActiveCell.Offset(6000, -9)).Select
Selection.Cut
Range(ActiveCell.Offset(0, 9), ActiveCell.Offset(6000, 9)).Select
ActiveSheet.Paste
End Sub
Something like this but not using the absolute Colomn names
Columns("R:R").Select
Selection.Cut Destination:=Columns("AA:AA")
Columns("AA:AA").Select
Thanks in advance.........Bob Vance