How do I close multiple open word docs without saving them?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Am viewing multiple documents but I wish to close them all at once without
saving them. Using MS Word V 2002.
 
Try this macro:

Sub CloseAll()
For Each doc In Application.Documents
doc.Saved = True
Next
Application.Quit
End Sub
 
Back
Top