E Evan Mar 10, 2010 #1 I created a Userform in VBA, and want it to automatically appear upon opening the Excel file everytime. How do I do that?
I created a Userform in VBA, and want it to automatically appear upon opening the Excel file everytime. How do I do that?
J John Mar 11, 2010 #2 Hi Evan Paste this in "ThisWorkbook" module. Private Sub Workbook_Open() userform1.Show End Sub HTH John
Hi Evan Paste this in "ThisWorkbook" module. Private Sub Workbook_Open() userform1.Show End Sub HTH John