Good Morning,
After closing a userform excel crash when I start a macro.
Macros, before open userform, works very well.
I try to set focus back to excel with
and also
Thanks
After closing a userform excel crash when I start a macro.
Macros, before open userform, works very well.
I try to set focus back to excel with
VBA Code:
ThisWorkbook.Application.Caption
Code:
Private Sub UserForm_Terminate()
Unload Me
Sheets(“MySheet”).Activate
End Sub
Thanks