Private Sub Worksheet_Change(ByVal Target As Range)
Dim x
If Target.Count > 1 Then Exit Sub
If Not Intersect(Target, Range("AN1:AN20")) Is Nothing Then
x = Target.Value
Application.EnableEvents = False
Application.Undo
Target.Value = Target.Value + x
Application.EnableEvents = True
End If
End Sub