Hi All,
Is there a way to track the changes that we made in particular cells in the workbook containing pivot tables?
Track Changes option in excel is not highlighted in the workbook in which i am working.
I used below codes to get the same (recorded macro
).It is also not working for this workbook.
Is there a way to do it?
Sub track_changes()
Range("C4").Select
Range(Selection, Selection.End(xlDown)).Select
With ActiveWorkbook
.HighlightChangesOptions When:=xlAllChanges
.ListChangesOnNewSheet = True
.HighlightChangesOnScreen = True
End With
End Sub
Thanks in advance,
Dee
Is there a way to track the changes that we made in particular cells in the workbook containing pivot tables?
Track Changes option in excel is not highlighted in the workbook in which i am working.
I used below codes to get the same (recorded macro
Is there a way to do it?
Sub track_changes()
Range("C4").Select
Range(Selection, Selection.End(xlDown)).Select
With ActiveWorkbook
.HighlightChangesOptions When:=xlAllChanges
.ListChangesOnNewSheet = True
.HighlightChangesOnScreen = True
End With
End Sub
Thanks in advance,
Dee