move mouse or cursorpos

  • Thread starter Thread starter matt dunbar
  • Start date Start date
M

matt dunbar

hi

anyone help me complete the macro below to do 2 things

first part jumps to another worksheet, fine!

next part i want the mouse cursor to hover in the top right hand corner
- is this even close to working - second part fails right now

Sub Macro14()
'
' Macro14 Macro
' Macro recorded 01/07/03 by Dunbar
'
'jump to Tennis court and put active cell in top left

Sheets("TENNISSERVES").Select
Range("A1").Select

'hover mouse cursor in top right

SetCursorPos 0, 0

End Sub

please help
matt
 
Back
Top