Log in

View Full Version : Status of Track Changes



Roderick
05-29-2019, 07:26 AM
I'm trying to find out if there is any VBA code which can be run and will alert a user that the Track Changes button has been activated and is still selected on the Review Menu of the Ribbon.

Why do I ask this? It is only as a precautionary warning should a user run a particular macro which requires the Track Changes to be switched off.

Thanks for any help.

Roderick

gmaxey
05-29-2019, 11:08 AM
Sub Scratchmacro()
MsgBox ActiveDocument.TrackRevisions
lbl_Exit:
Exit Sub
End Sub

Roderick
05-29-2019, 02:19 PM
Thanks, Greg.

Very simple, but just what was needed.

Roderick