如何突出顯示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。 現在 Microsoft 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