A family of Microsoft word processing software products for creating web, email, and print documents.
Sub Test()
Dim D As Document
For Each D In Documents
D.Save
Next
End Sub
If you only want to save open documents (not unsaved newly created documents):
Sub Test()
Dim D As Document
For Each D In Documents
If D.Path <> "" Then D.Save
Next
End Sub