跳到主要內容

如何在Excel中監視單元格的變化?

如果在Excel中更改了數據,如何監視工作表單元格? 這可能有助於您盡快識別更改的單元格。 本文,我將討論一些有趣的方法來處理Excel中的此任務。

使用“跟踪更改”功能監視Excel中的單元格更改

使用VBA代碼監控Excel中的單元格更改


箭頭藍色右氣泡 使用“跟踪更改”功能監視Excel中的單元格更改

Excel有一個有用的 跟踪變化 功能,它可以幫助您標記已更改的單元格,請執行以下操作:

1。 點擊 評論 > 跟踪變化 > 突出顯示更改,請參見屏幕截圖:

文檔監控器更改1

2。 在 突出顯示更改 對話框中,進行以下操作:

(1.)檢查 在編輯時跟踪更改。 這也共享您的工作簿.

(2.)在 突出顯示哪些變化 部分,根據需要指定“何時”,“誰”和“地點”項目。

(3.)最後檢查 在屏幕上突出顯示更改 選項。

文檔監控器更改2

3。 完成設置後,單擊 OK 按鈕,現在,當您更改指定單元格中的任何單元格值時,更改後的單元格周圍帶有三角形圖標的邊框,請參見屏幕截圖:

文檔監控器更改3

備註:使用這種方法,您的工作簿將成為共享工作簿。


箭頭藍色右氣泡 使用VBA代碼監控Excel中的單元格更改

以下VBA代碼還可以幫助您監視更改後的單元格值,請按以下步驟操作:

1。 右鍵單擊要監視單元格更改的工作表選項卡,然後選擇 查看代碼 從上下文菜單中,在打開的 Microsoft Visual Basic for Applications 窗口,請複制以下VBA代碼並將其粘貼到模塊中:

VBA代碼:監視Excel工作表中的單元格更改:

Private Sub Worksheet_Change(ByVal Target As Range)
'Updateby Extendoffice 20160728
    Dim xrng As Range
    Set xrng = Range("A1:E7")
    If Not Application.Intersect(xrng, Range(Target.Address)) _
           Is Nothing Then
        MsgBox "Cell " & Target.Address & " has changed.", vbInformation, "Kutools for Excel"
    End If
End Sub

文檔監控器更改4

注意: 在上面的代碼中, A1:E7 是單元格更改時要監視的數據范圍,可以根據需要進行更改。

2。 然後保存並關閉此代碼窗口,現在,當您在指定範圍內更改單元格值時,將彈出一個消息框提醒您,請參見屏幕截圖:

文檔監控器更改5

最佳辦公生產力工具

🤖 Kutools 人工智慧助手:基於以下內容徹底改變數據分析: 智慧執行   |  生成代碼  |  建立自訂公式  |  分析數據並產生圖表  |  呼叫 Kutools 函數...
熱門特色: 尋找、突出顯示或識別重複項   |  刪除空白行   |  合併列或儲存格而不遺失數據   |   沒有公式的回合 ...
超級查詢: 多條件VLookup    多值VLookup  |   跨多個工作表的 VLookup   |   模糊查詢 ....
高級下拉列表: 快速建立下拉列表   |  依賴下拉列表   |  多選下拉列表 ....
欄目經理: 新增特定數量的列  |  移動列  |  切換隱藏列的可見性狀態  |  比較範圍和列 ...
特色功能: 網格焦點   |  設計圖   |   大方程式酒吧    工作簿和工作表管理器   |  資源庫 (自動文字)   |  日期選擇器   |  合併工作表   |  加密/解密單元格    按清單發送電子郵件   |  超級濾鏡   |   特殊過濾器 (過濾粗體/斜體/刪除線...)...
前 15 個工具集12 文本 工具 (添加文本, 刪除字符,...)   |   50+ 圖表 類型 (甘特圖,...)   |   40+ 實用 公式 (根據生日計算年齡,...)   |   19 插入 工具 (插入二維碼, 從路徑插入圖片,...)   |   12 轉化 工具 (數字到單詞, 貨幣兌換,...)   |   7 合併與拆分 工具 (高級合併行, 分裂細胞,...)   |   ... 和更多

使用 Kutools for Excel 增強您的 Excel 技能,體驗前所未有的效率。 Kutools for Excel 提供了 300 多種進階功能來提高生產力並節省時間。  點擊此處獲取您最需要的功能...

產品描述


Office選項卡為Office帶來了選項卡式界面,使您的工作更加輕鬆

  • 在Word,Excel,PowerPoint中啟用選項卡式編輯和閱讀,發布者,Access,Visio和Project。
  • 在同一窗口的新選項卡中而不是在新窗口中打開並創建多個文檔。
  • 將您的工作效率提高 50%,每天為您減少數百次鼠標點擊!
Comments (7)
No ratings yet. Be the first to rate!
This comment was minimized by the moderator on the site
Merhaba. WhatsApp üzerinden bana gelen bir excell dosyası var. Bunu bilgisayar üstünden açıp. Bunda ki hareketleri ve değişiklikleri görme şansım var mı ?
This comment was minimized by the moderator on the site
I got "syntax error" with "Dim xrng As Range" when I inserted the below code in my worksheet_change event :-(
VBA code: Monitor cell changes in Excel worksheet:

Private Sub Worksheet_Change(ByVal Target As Range)
'Updateby Extendoffice 20160728
    Dim xrng As Range
    Set xrng = Range("A1:E7")
    If Not Application.Intersect(xrng, Range(Target.Address)) _
           Is Nothing Then
        MsgBox "Cell " & Target.Address & " has changed.", vbInformation, "Kutools for Excel"
    End If
End Sub
This comment was minimized by the moderator on the site
if i have large amount of data in excel file, and i just want to know status in one different colum that if any cell gets change its value then it should indicate in from of that cell's row , tha status shoild be changed, how can i do this
This comment was minimized by the moderator on the site
hello how can we track by date and time in the change in the cell
This comment was minimized by the moderator on the site
Woooow this is nowhere else except here! Amazing!

Is there any way to insert a row right below the row of the cell where the cell was updated?

To make it more challenging, if I have list validation enabled or formula enabled can that as well be copied to the new row?
This comment was minimized by the moderator on the site
Hi, amar,
To insert a row below the changed value, the following VBA code can help you, please try it.

Private Sub Worksheet_Change(ByVal Target As Range)
Dim xRg As Range
Dim xStrPre, xStr As String
On Error Resume Next
Set xRg = Range("A1:E7")
If Intersect(xRg, Target) Is Nothing Then Exit Sub
Application.EnableEvents = False
xStr = Target.Value
Application.Undo
xStrPre = Target.Value
Target.Offset(1, 0).EntireRow.Insert xlShiftDown
Target.Offset(1, 0).Value = xStrPre
Target.Value = xStr
Application.EnableEvents = True
End Sub
This comment was minimized by the moderator on the site
Hello, I have it copying old number to new line - how do I have the new line go to a new tab instead?
There are no comments posted here yet
Please leave your comments in English
Posting as Guest
×
Rate this post:
0   Characters
Suggested Locations