Workbook_Open() subs are not firing if I have another workbook open.
The sub does fire if no other workbooks are open, but if another workbook is open, it doesn't fire.
This is not workbook specific... it happens to any workbook with a Workbook_Open() sub.
Code
Private Sub Workbook_Open()
'Load Initial UserForm
If ThisWorkbook.Sheets("Project Info").Range("F2").Value = "" Then
InitializeUserForm.Show
End If
End Sub
Thoughts on what could be stopping the Workbook_Open sub from firing?
TiA,