如何突出显示Excel中修改/更新的单元格?
有时,您可能希望在编辑工作表/工作簿以遵循更改时突出显示已修改的单元格,但是如何在Excel中处理呢?
使用“跟踪更改”突出显示已修改的单元格
在Excel中,“跟踪更改”功能可以突出显示更改。
1.保存工作簿,然后再应用 Track Changes 功能,然后单击 Review > Track Changes > Highlight Changes.
2。 在里面 Highlight Changes 对话框,同时选中 Track changes while editing. This also shares your workbook 和 Highlight changes on screen 选项。 另外,您可以在跟踪更改时指定时间,用户和范围的限制。
3。 点击 OK。 现在 微软的Excel 对话框出现,并提示您保存工作簿。
4。 点击 OK。 现在,新的修改将以一个角度突出显示。
![]() |
![]() |
![]() |
小技巧:此功能适用于整个工作簿。
用VBA代码突出显示修改后的单元格
如果需要VBA代码来处理作业,则可以执行以下操作:
1。 按 Alt + F11 启用 Microsoft Visual Basic for Applications 窗口。
2。 点击 Insert > Module,然后双击 ThisWorkbook in VBAProject 窗格,并将下面的代码粘贴到脚本中。
VBA:复制和粘贴单元格地址
'UpdatebyExtendoffice20180307
Private Sub Workbook_SheetChange(ByVal Sh As Object, ByVal Target As Range)
If Target.Value <> "" Then
Target.Interior.ColorIndex = 6
End If
End Sub

3. Save the code and go back to the workbook, while you modified the sheet, the cells will be highlighted with a background color.

Note: If you just want to apply the highlight in current sheet, just right click at the sheet tab and click View Code in the context menu, then paste below code to the script.

Private Sub WorkSheet_Change(ByVal Target As Range)
'UpdatebyExtendoffice20180307
If Target.Value <> "" Then
Target.Interior.ColorIndex = 6
End If
End Sub
Highlight the modified cells in tables with Tables Merge
If you want to update a main table based on another one, and then highlight the modified/new data in the main table, you can try Kutools for Excel’s Tables Merge feature.
Kutools for Excel, with more than 300 handy functions, makes your jobs more easier.
After installing Kutools for Excel, please do as below:(Free Download Kutools for Excel Now!)
1. Select the main table which needs to be modified or updated by other table, and click Kutools Plus > Tables Merge.

2. Select the table range you want to update the main table based on in Tables Merge wizard.

3. Click Next, and select the key column you want to compare two tables based on.

4. Click Next, select the columns you want to update.

5. Click Next, in the Highlight options section, select the background color and font color you want to use for the modified cells.

6. Click Finish and Yes close dialogs. Now the modified cells have been highlighted.

The Best Office Productivity Tools
Kutools for Excel Solves Most of Your Problems, and Increases Your Productivity by 80%
- Reuse: Quickly insert complex formulas, charts and anything that you have used before; Encrypt Cells with password; Create Mailing List and send emails...
- Super Formula Bar (easily edit multiple lines of text and formula); Reading Layout (easily read and edit large numbers of cells); Paste to Filtered Range...
- Merge Cells/Rows/Columns without losing Data; Split Cells Content; Combine Duplicate Rows/Columns... Prevent Duplicate Cells; Compare Ranges...
- Select Duplicate or Unique Rows; Select Blank Rows (all cells are empty); Super Find and Fuzzy Find in Many Workbooks; Random Select...
- Exact Copy Multiple Cells without changing formula reference; Auto Create References to Multiple Sheets; Insert Bullets, Check Boxes and more...
- Extract Text, Add Text, Remove by Position, Remove Space; Create and Print Paging Subtotals; Convert Between Cells Content and Comments...
- Super Filter (save and apply filter schemes to other sheets); Advanced Sort by month/week/day, frequency and more; Special Filter by bold, italic...
- Combine Workbooks and WorkSheets; Merge Tables based on key columns; Split Data into Multiple Sheets; Batch Convert xls, xlsx and PDF...
- More than 300 powerful features. Supports Office / Excel 2007-2021 and 365. Supports all languages. Easy deploying in your enterprise or organization. Full features 30-day free trial. 60-day money back guarantee.
Office Tab Brings Tabbed interface to Office, and Make Your Work Much Easier
- Enable tabbed editing and reading in Word, Excel, PowerPoint, Publisher, Access, Visio and Project.
- Open and create multiple documents in new tabs of the same window, rather than in new windows.
- Increases your productivity by 50%, and reduces hundreds of mouse clicks for you every day!
Sort comments by
#29034
This comment was minimized by the moderator on the site
0
0
#36165
This comment was minimized by the moderator on the site
0
0
#36215
This comment was minimized by the moderator on the site
Report
0
0
#37033
This comment was minimized by the moderator on the site
0
0
There are no comments posted here yet