macro to move cursor one cell right
You don't need to. The Copy Method accepts a Range argument which
would be the destination for the paste operation.
For example:
Worksheets(1).Range("A1").Copy Destination:=Worksheets(3).Range("B12")
--JP
On Sep 22, 3:31*pm, Kodak1993
wrote:
If I need to move the cursor to the right to paste a value copied from
another sheet , what macro command should I use
|