Hi,
The range in this code contains formulas.
When the values change the code does not work.
I know it has something to do with the formulas but i can't find out what to do.
The range in this code contains formulas.
When the values change the code does not work.
I know it has something to do with the formulas but i can't find out what to do.
Code:
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Application.Intersect(Target, Me.Range("E6:E31")) Is Nothing Then
Cells(Target.Row, Target.Column + 3) = Date
End If
End Sub