I have multiple values on cell ("F3:N3") that change dependent on user input on ("E18"). I am having trouble capturing the values before change. I would like the capture to happen on cells ("V8:AD8") Below is the code..
Private Sub Worksheet_Change(ByVal Target As Range)
If Target.Address = Range("E18").Address Then
Application.EnableEvents = False
Dim sOldValue As String, sNewValue As String
sNewValue = Target.Value
Application.Undo
Dim rOld As Range
rOld = Range("F3:N3").Value
Target.Value = sNewValue
Range("V8:AD8").Value = rOld.Value
Application.EnableEvents = True
End If
End Sub