View Single Post
  #1   Report Post  
Chip Pearson
 
Posts: n/a
Default Is there a way to change Excel's pointer from a + to an arrow (li.

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



"cheryl18" wrote in message
...
Is there a way to change Excel's pointer from a + to an arrow
(like in Lotus)?