scousethemoose
Programmer
Hi does anyone know of a way to version multiple word documents at the same time. I have over 500 documents which all need to be versioned. If someone could point me in the right direction that world be great.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
With ActiveDocument
If .Versions.Count >= 1 Then
Debug.Print "before delete: " & .Versions.Count
.Versions(.Versions.Count).Delete
Debug.Print "afer delete: " & .Versions.Count
.Save
.Close
End If
End With
Sub DeleteLastVersion()
With ActiveDocument
If .Versions.Count > 0 Then
.Versions(.Versions.Count).Delete
.Saved = False
.Save
End If
End With
End Sub