Excel Cursor

  • Thread starter Thread starter Frank
  • Start date Start date
F

Frank

Hello, is there a way of changing Excel's cursor from the default cross to
the basic Windows arrow? Thanks in advance.
 
Try this

Sub cursor()
Application.cursor = xlNorthwestArrow
End Sub

change it back to normal with xlDefault

Mike
 
Hi Frank

Run this code line one time

Application.Cursor = xlNorthwestArrow


Te restore

Application.Cursor = xlDefault
 
Back
Top