[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

microsoft.public.excel.programming

Is it possible to exit Excel completely from a macro?

Ned

12/15/2006 8:27:00 PM

I'm trying to run a auto open macro that will open a second workbook, save
data there and then shut down Excel completely. Is this possible?
2 Answers

John Bundy

12/15/2006 8:55:00 PM

0

Application.quit

if you want to save stuff first
For Each w In Application.Workbooks
w.Save
Next w
Application.Quit

--
-John
Please rate when your question is answered to help us and others know what
is helpful.


"salt417" wrote:

> I'm trying to run a auto open macro that will open a second workbook, save
> data there and then shut down Excel completely. Is this possible?

WATYF1

12/15/2006 8:58:00 PM

0


Not sure what you mean by "save data there", but this code will Open a
new workbook... save it to a directory... then close all open workbooks
and exit Excel.


Sub Test()

Dim wrk As Workbook

Set wrk = Workbooks.Add
wrk.SaveAs "C:\Blah\Blah.xls"
Application.Workbooks.Close
Application.Quit

End Sub


On Dec 15, 2:27 pm, salt417 <noth...@yahoo.com> wrote:
> I'm trying to run a auto open macro that will open a second workbook, save
> data there and then shut down Excel completely. Is this possible?