K Klaus Iden Mar 22, 2004 #1 I need to delete a temporary workbook after I'm finished with it and can't remember how to do it. Help!
I need to delete a temporary workbook after I'm finished with it and can't remember how to do it. Help!
J Jan Karel Pieterse Mar 22, 2004 #2 Hi Klaus, I need to delete a temporary workbook after I'm finished with it and can't remember how to do it. Click to expand... If it is a file: Kill "c:\whateverPath\WhateverWorkbook.xls" Otherwise: Workbooks("WhateverWorkbook.xls").Close SaveChanges:=False Regards, Jan Karel Pieterse Excel MVP www.jkp-ads.com
Hi Klaus, I need to delete a temporary workbook after I'm finished with it and can't remember how to do it. Click to expand... If it is a file: Kill "c:\whateverPath\WhateverWorkbook.xls" Otherwise: Workbooks("WhateverWorkbook.xls").Close SaveChanges:=False Regards, Jan Karel Pieterse Excel MVP www.jkp-ads.com