G Gary''s Student Mar 28, 2010 #3 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 here: http://msdn.microsoft.com/en-us/library/ms171548(VS.80).aspx
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 here: http://msdn.microsoft.com/en-us/library/ms171548(VS.80).aspx
D dhstein Mar 28, 2010 #4 Thanks Gary and Don Gary''s Student said: 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 here: http://msdn.microsoft.com/en-us/library/ms171548(VS.80).aspx Click to expand...
Thanks Gary and Don Gary''s Student said: 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 here: http://msdn.microsoft.com/en-us/library/ms171548(VS.80).aspx Click to expand...