If you simply want to get Excel out the way and easy way to this is
have the form hide Excel when it starts and unhide Excel when it
closes.
To Hide Excel:
Application.Visible = False
To Restore Excel:
Application.Visible = True
You can do it the way you want, but because the UserForm is modal it
will be minimized along with Excel. This problem can be worked around
as well. The code uses a lot of API calls and I am not sure you want to
include all this extra code in your project. That's why I made the above
suggestion.
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.