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
 
Top