Make excel workbook invisible and open specific userform

The solution for “Make excel workbook invisible and open specific userform” can be found here. The following code will assist you in solving the problem.

Private Sub Workbook_Open()
Application.Visible = False
ThisWorkbook.Windows(1).Visible = False
UserForm1.Show
End Sub

Thank you for using DeclareCode; We hope you were able to resolve the issue.

More questions on [categories-list]

Similar Posts