Is there a way to change Excel's pointer from a + to an arrow (li.

  • Thread starter Thread starter Guest
  • Start date Start date
Only with VBA code.

Sub ChangeCursor()
Application.Cursor = xlNorthwestArrow
End Sub

Sub ChangeCursorBack()
Application.Cursor =xlDefault
End Sub


--
Cordially,
Chip Pearson
Microsoft MVP - Excel
Pearson Software Consulting, LLC
www.cpearson.com
 
Back
Top