Close and Exit Excel

M

MikeWaldron

Jeff,

Try setting the object to nothing in order to destory it.
Something along the order of :

Set myxl = CreateObject("Excel.Application")
' your code here - save and close then
myxl.Application.Quit
Set myxl = Nothing

I think the should do it
Regards,
Mike
 

Ask a Question

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.

Ask a Question

Top