View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
Gary''s Student Gary''s Student is offline
external usenet poster
 
Posts: 11,058
Default VBA command to move cursor

If you mean move the Activecell up one row, then:

Sub MoveUp()
ActiveCell.Offset(-1, 0).Select
End Sub

If you mean actually moving the mouse in VBA, then start he

http://msdn.microsoft.com/en-us/libr...48(VS.80).aspx

--
Gary''s Student - gsnu201001


"dhstein" wrote:

Is there a VBA command to move the cursor up one row ? Thanks.