Apr 11, 2002 #1 hsummer Technical User Dec 10, 2001 13 US I want a form to load or macro to run when a certain workbook is opened - like autorun. I open it from Excel (not from another VBA app). How do I do it? Thanks, Harold
I want a form to load or macro to run when a certain workbook is opened - like autorun. I open it from Excel (not from another VBA app). How do I do it? Thanks, Harold
Apr 11, 2002 2 #2 Loomah Technical User Mar 4, 2002 1,911 IE Put this in the code pane for ThisWorkbook, sit back and enjoy! Option Explicit Private Sub Workbook_Open() UserForm1.Show End Sub Upvote 0 Downvote
Put this in the code pane for ThisWorkbook, sit back and enjoy! Option Explicit Private Sub Workbook_Open() UserForm1.Show End Sub