G Guest Jan 28, 2005 #1 Am viewing multiple documents but I wish to close them all at once without saving them. Using MS Word V 2002.
Am viewing multiple documents but I wish to close them all at once without saving them. Using MS Word V 2002.
G Guest Jan 28, 2005 #2 Try this macro: Sub CloseAll() For Each doc In Application.Documents doc.Saved = True Next Application.Quit End Sub
Try this macro: Sub CloseAll() For Each doc In Application.Documents doc.Saved = True Next Application.Quit End Sub