I want to show a userform each time my file is opened?

Submitted by: Administrator
Combine the two solutions above:

Private Sub Workbook_Open()
UserForm1.Show
End Sub

or

Sub Auto_open()
UserForm1.Show
End Sub
Submitted by: Administrator

Read Online Microsoft Excel Job Interview Questions And Answers