TRaP
Moderator
Inregistrat: acum 7 ani
Postari: 811
|
|
Enable Shared Workbook and Track Changes buttons from this article (just the 2 buttons should be enough):
Share workbook as in this article:
Macro to show the History sheet with the click of a button instead of having to go to Track Changes - Highlight Changes, selecting When: All, checking Who: Everyone, checking List changes on a new sheet.
Just click a button and have all that with this code, including Highlight changes and generation of the History sheet:
Sub Changes_Highlight()
With ActiveWorkbook .HighlightChangesOptions _ When:=xlAllChanges, _ Who:="Everyone" .ListChangesOnNewSheet = True .HighlightChangesOnScreen = True End With
End Sub |
Note: The "History" sheet cannot be deleted and it disappears when saving the workbook.
|
|