I'm running VBA code in MS Access to populate cells in an Excel spreadsheet. It works AOK, except that the Quit method doesn't work: Windows Task Manager shows an instance of Excel still running under Processes (although not under Applications).
I start Excel with:
When finished, I use:
Any suggestions why the Excel process does not close down please?
MTIA
Max Hugen
Australia
I start Excel with:
Code:
Set appExcel = Excel.Application
When finished, I use:
Code:
appExcel.Quit
Set appExcel = Nothing
Any suggestions why the Excel process does not close down please?
MTIA
Max Hugen
Australia