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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top