SonicBoomBand
Technical User
Is there a before worksheet event method to capture an original cell value before the user changes it?
I would appreciate any help.
I would appreciate any help.
Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Intersect(Target, Range("A1:C10")) Is Nothing Then
MsgBox "CHANGE" & vbCrLf & Target.Address & vbCrLf & "Value = " & Target.Value
End If
End Sub
Private Sub Worksheet_SelectionChange(ByVal Target As Range)
'Store this info on another sheet?
If Not Intersect(Target, Range("A1:C10")) Is Nothing Then
MsgBox "SELECTION CHANGE" & vbCrLf & Target.Address & vbCrLf & "Value = " & Target.Value
End If
End Sub