Excel Cursor

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

Frank

Hello, how do I make this take effect everytime I start Excel? Thanks in
advance.

Sub cursor()
Application.cursor = xlNorthwestArrow
End Sub

change it back to normal with xlDefault
 
Frank

Put it in the workbook_open event
Alt+F11
Double click this workbook
and paste in

Private Sub Workbook_Open()
Application.cursor = xlNorthwestArrow
End Sub

Mike
 
Frank

You cannot run a macro from the command line when starting Excel.

You would have to place the code into Workbook_Open sub in the first workbook
you open.

Maybe in your Personal.xls file which opens with Excel.

Sub Workbook_Open()
Application.cursor = xlNorthwestArrow
End Sub


Gord Dibben MS Excel MVP
 
Back
Top