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...