View Single Post
  #3   Report Post  
Posted to microsoft.public.excel.misc
Jim Rech Jim Rech is offline
external usenet poster
 
Posts: 2,718
Default SHow user form when opening workbook

In a standard module:

Sub Auto_Open()
Userform1.Show ''using the name of your form if different
End Sub

Naturally this will work only if the user enables macros.

--
Jim
"Wanna Learn" wrote in message
...
| Hello I created a user form in VBA . WHenever the workbook is opened I
want
| the form to show. but I am having problems doing this. Help! thanks