Here is a simple VBA code to "Kill" the Excel process using VBA
Sub Kill_Excel()
Dim sKillExcel As String
sKillExcel = "TASKKILL /F /IM Excel.exe"
Shell sKillExcel, vbHide
End Sub
Wednesday, May 06, 2009
Download Windows Live Toolbar and personalize your Web experience! Add custom buttons to get the information you care about most.

Most excellent! Thank you very much!!
ReplyDeleteIn the words of Borat,
ReplyDelete"Very Nice!"
Is it possible to stop process but never close excel workbook
ReplyDeleteThat is strange. Once the process gets killed the Application is no more in Memory
ReplyDeleteWorks Great - Thank You.
ReplyDeleteI've been fighting with this problem for days . . . .
Thanks a lot ;) was looking for something to kill excel while running PPT VBA code.
ReplyDeleteAgain :) THANKS :))
Rami