macro to move cursor one cell right

  • Thread starter Thread starter Kodak1993
  • Start date Start date
K

Kodak1993

If I need to move the cursor to the right to paste a value copied from
another sheet , what macro command should I use
 
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
 
If JP's reply does not do the trick...........

To move one cell to the right you need cellref.Offset(0, 1)


Gord Dibben MS Excel MVP
 
Back
Top