Hello,
Here's a task I want to automate. This is a macro I did with the macro recorder to move the contents of a cell to the cell next to it.
movemacro
Selection.Cut Destination:=ActiveCell.Offset(0,1).Range("A1")
ActiveCell.Offset(0,1).Range("A1").Select
Now, using Ctrl select to select random cells in column G, 30 cells or so, I would like to move all the selected cells one cell to the right, staying in the same row.
I'm using WinXP and Windows7 with Excel2007.
I posted this before but I didn't explain it well enough to get a workable solution.
Thanks for any help on this.
Kendel
Here's a task I want to automate. This is a macro I did with the macro recorder to move the contents of a cell to the cell next to it.
movemacro
Selection.Cut Destination:=ActiveCell.Offset(0,1).Range("A1")
ActiveCell.Offset(0,1).Range("A1").Select
Now, using Ctrl select to select random cells in column G, 30 cells or so, I would like to move all the selected cells one cell to the right, staying in the same row.
I'm using WinXP and Windows7 with Excel2007.
I posted this before but I didn't explain it well enough to get a workable solution.
Thanks for any help on this.
Kendel