Excel Cursor

F

Frank

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

Mike H

Try this

Sub cursor()
Application.cursor = xlNorthwestArrow
End Sub

change it back to normal with xlDefault

Mike
 
R

Ron de Bruin

Hi Frank

Run this code line one time

Application.Cursor = xlNorthwestArrow


Te restore

Application.Cursor = xlDefault
 
Top