Detecting what value was in a cell prior to a chan

2019-09-07 06:33发布

Is there a way to detect what a cell use to contain before it was changed. I'm trying to perform actions based on what the previous value was in a cell. I know there's Worksheet_Change but the Target it uses is the new value.

2条回答
Rolldiameter
2楼-- · 2019-09-07 07:04

You can undo the change, populate the undone value to a variable then redo the change like so:

Private Sub Worksheet_Change(ByVal Target As Range)
Dim OldValue As Variant, NewValue As Variant
NewValue = Target.Value
Application.EnableEvents = False
Application.Undo
OldValue = Target.Value
Target.Value = NewValue
Application.EnableEvents = True
MsgBox OldValue
End Sub
查看更多
戒情不戒烟
3楼-- · 2019-09-07 07:04

We must remember what was in there. Say cell B9 was of interest. In a Standard Module include the single line:

Public OldValue As Variant

and in the worksheet code area:

Private Sub Worksheet_Change(ByVal Target As Range)
    If Intersect(Target, Range("B9")) Is Nothing Then Exit Sub
    v = Target.Value
    MsgBox v & vbCrLf & OldValue
    OldValue = v
End Sub
查看更多
登录 后发表回答