I want from VBA to start/stop “Track changes” functionality in Excel.
Searching thru the Net I saw a property called TrackRevisions of ActiveDocument object. Supposedly in MS Word writing ActiveDocument.TrackRevisions = True should turn on “Track changes”.
But in MS Excel this line gives 424 Object required run-time error. Same error is returned when trying with ThisWorkbook. Changing it to ActiveSheet brings 438 Object doesn't support this property or method error.
For a shared workbook you can use VBA from these links (the method is
ActiveWorkbook.HighlightChangesOptions)Office 2007
Office 2010
This doesn’t offer the same depth of tracking as available in Word, for example from the first link in my post,in Excel:
If that isn’t what you were chasing you may be able to employ specific VBA to track
But if that is the case we will need more information from you as to what you are chasing.