Can you tell me if there is a command I can add to the end of a macro I have created in Word to tell it to close Word down?
Can you tell me if there is a command I can add to the end of a macro I have created in Word to tell it to close Word down?

This month, every Windows Secrets subscriber can download a one-chapter excerpt of Windows 7: The Missing Manual.Windows 7: The Missing Manual provides valuable information to help you overcome these difficulties in learning a new operating system. Subscribe today to download your free excerpt.
If you really want to do this, you can use Application.Quit
It has three optional arguments, of which SaveChanges is the most important. It can be wdDoNotSaveChanges, wdPromptToSaveChanges or wdSaveChanges.
For instance, if you want to quit Word without saving any open documents, use
Application.Quit SaveChanges:=wdDoNotSaveChanges
If you want to know more, look up Quit in the Word VBA help index.