Posted to microsoft.public.excel.misc
|
|
VBA command to move cursor
Thanks Gary and Don
"Gary''s Student" wrote:
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.
|