Hi,

I'm having trouble completly closing Excel
I'm creating the Excel object like this:

Set appxl = CreateObject("Excel.Application")
Set xl = appxl.Application


'Then I'm killing it like this:

Set appxl = GetObject(, "EXCEL.Application")
With appxl
.ActiveWorkbook.Close savechanges:=False
.Quit
End With
Set appxl = Nothing
Set xl = Nothing

It disapears from the taskbar as if it's gone but low and behold it's still sitting as open in the task manager.
What am I doing wrong? It still closes with my application but I want it gone when I tell it to go!
Please help.

Thank You in advance.