Excel VisualBasic Script

Private Sub Worksheet_Change(ByVal Target As Range)
    Application.EnableEvents = False
    Range("A1").Value = Target.Value
    Application.EnableEvents = True
End Sub