Is there a way to create a macro that runs immediately upon opening of a worksheet?
P Peanut Oct 2, 2006 #1 Is there a way to create a macro that runs immediately upon opening of a worksheet?
D Dave Peterson Oct 2, 2006 #2 You can use a macro named Autpen() in a General module: Option Explicit Sub Autpen() msgbox "hi" End Sub If you're new to macros, you may want to read David McRitchie's intro at: http://www.mvps.org/dmcritchie/excel/getstarted.htm
You can use a macro named Autpen() in a General module: Option Explicit Sub Autpen() msgbox "hi" End Sub If you're new to macros, you may want to read David McRitchie's intro at: http://www.mvps.org/dmcritchie/excel/getstarted.htm