How to Track Changes in Excel with Easy Steps

Method 1 – Turning On Excel Track Changes

  • Go to the File tab.

Turning on Excel Track Changes Feature

  • Click the More option if needed to select the Options.

Turning on Excel Track Changes Feature

  • Go to ‘Customize Ribbon’, in the right panel with ‘Main tabs’ find Review, right-click on the Review option, and ’Add new group’.
  • In the left panel ‘Choose commands from’ select ‘Commands Not in the ribbon’, find ‘Track changes (Legacy)’ and Add>> to your New Group(Custom).

Turning on Excel Track Changes Feature

  • The ‘Track Changes (Legacy) option is added in the main tabs section.

Step 2 – Highlighting Changes on the Display

  • Go to the Review tab.
  • Click on the ‘Track Changes (Legacy)’ and Select the Highlight Changes option.

Highlighting Changes on Screen

  • Check the option ‘List changes on a new sheet’ from the’ Highlight Changes dialog box.
  • From the When field, we can specify if we want all changes or changes that are not reviewed or ‘changes since last saved’.
  • Click OK.

Highlighting Changes on Screen

  • If we make any changes, we’ll get comment boxes to display them.

Highlighting Changes on Screen


Method 3 – Viewing Tracked Changes in the History Sheet

  • Turn on the Excel Track Changes feature following Method 1.
  • Select the ‘Share Workbook(Legacy)’ option from the Review tab button.

Viewing Tracked Changes History in Separate Sheet

  • A new dialog box named Highlight Changes will open.
  • Go to the Highlight which changes box. Type the values from the following image in the When and Who field.
  • Check the option ‘List changes on a new sheet‘ box and click OK.

Viewing Tracked Changes History in Separate Sheet

  • The following result will show up on the ‘History Sheet’.

Viewing Tracked Changes History in Separate Sheet


Method 4 – Accepting or Rejecting Changes

  • Go to the Review tab.
  • Select the option Accept/Reject Changes from the Track Changes(Legacy) drop-down.

Accepting or Rejecting Changes

  • Open the Select Changes to Accept or Reject dialog box, and edit the following options.
  • Go to the text field When. Select ‘Not yet reviewed’. We can also select Since.
  • Go to the text field Who. Select the user type, that we want to review.
  • Uncheck the box named Where and click OK.

Accepting or Rejecting Changes

  • You will see the changes in order, and you must select either Reject or Accept to cancel or keep the changes individually.

Accepting or Rejecting Changes


Method 5 – Setting a Duration to Keep the Change History

  • Select the Share Workbook option from the Review tab.
  • Go to the Advanced tab.
  • In Keep change history for box, insert the duration.
  • Click OK.

Setting Duration to Keep Change History


Turning Off Track Changes

Steps:

  • Go to the Review tab.
  • Go to Track Changes and select Highlight Changes
  • Uncheck the option Track changes while editing from the Highlight Changes dialog box,

Turning Off Track Changes in Excel


Track Cell Changes in Excel

Method 1 – Using the Cell Function

Steps:

  • In cell G4, apply the following formula to track the Cell Address:
=CELL(“address”)

How to Track Cell Changes in Excel

  • In cell G5, insert the following formula to track the Cell Content:
=CELL(“contents”)

How to Track Cell Changes in Excel

  • In cell G6, create the following formula to track the File Address:
=CELL(“filename”)
  • If any change is made, the last change will be shown on the screen in the following way.

How to Track Cell Changes in Excel


Method 2 – Applying VBA Code

Steps:

  • Putting two shapes for a Reset button and a Track Change.

How to Track Cell Changes in Excel

  • Press ALT + F11 to open the VBA window, then select Insert and choose Module.

Applying VBA Code

  • Copy the following code and insert it into the blank space.
Sub DeleteFormat()
Cells.FormatConditions.Delete
End Sub
Sub TrackCellChange()
For Each sheetw In ActiveWorkbook.Worksheets
sheetw.Cells.FormatConditions.Delete
Err.Clear
On Error Resume Next
x = sheetw.Cells.SpecialCells(xlCellTypeFormulas, 23).Count
If Err.Number = 0 Then
For Each cell In sheetw.Cells.SpecialCells(xlCellTypeFormulas, 23)
cell.FormatConditions.Add Type:=xlCellValue, Operator:=xlNotEqual, _
Formula1:="=" & cell.Value
cell.FormatConditions(cell.FormatConditions.Count).SetFirstPriority
With cell.FormatConditions(1).Interior
.Color = 2552550
.TintAndShade = 0
End With
cell.FormatConditions(1).StopIfTrue = False
Next cell
End If
Next sheetw
End Sub

How to Track Cell Changes in Excel

  • Right-click on the Reset shape and select the ‘Assign Macro’.

How to Track Cell Changes in Excel

  • Press the Delete Format option and click OK.

How to Track Cell Changes in Excel

  • Assign the Trackcellchange macro to Track Change.

How to Track Cell Changes in Excel


Things to Remember

  • The purpose of the history sheet is to show the saved changes, so try to save the latest work by pressing Ctrl + S.
  • If the history sheet is unable to show the list of all the changes, go to All using the When box and make the Who and Where boxes empty.
  • If you want your track change of Excel to look similar to Word’s track changes, then you can get help by reading this macro post by the Microsoft Excel Support Team.

Download the Practice Workbook


Track Changes in Excel: Knowledge Hub


<< Go Back to Share Workbook | Workbook in Excel | Learn Excel

Get FREE Advanced Excel Exercises with Solutions!
Zehad Rian Jim
Zehad Rian Jim

Zehad Rian Jim is a dedicated professional with a BSc. Degree in Naval Architecture and Marine Engineering from Bangladesh University of Engineering and Technology. He's good with Microsoft Office and has written more than 80 helpful articles for ExcelDemy in the last year. Now, he makes fun and easy-to-follow Excel tutorials for YouTube as part of the ExcelDemy Video project. Zehad loves figuring out Excel problems, and his passion for learning new things in Excel shines through in... Read Full Bio

We will be happy to hear your thoughts

Leave a reply

Advanced Excel Exercises with Solutions PDF

 

 

ExcelDemy
Logo