Accepting or rejecting changes

J

John Doue

I would like to use a macro that starts at the insertion point and then
search for the next change, displays Approve ou Reject choices and then
automatically goes to the next one with the same choices plus the option
to cancel the previous change and resume from that previous change.
Something like this in order to make change approval faster and safer
than clicking on Icons.

This probably is easy for you experts but for me ...

Regards
 
M

mbaird

I would use the Revision collection to move through the revisions. You would
then select each revision and present a form containing the choices that you
would require.

Dim oRevision As Revision

For Each oRevision In ActiveDocument.Revisions
oRevision.Range.Select
' Code to show form.
Next oRevision

Mark Baird
 
Top