You are on page 1of 1

Programar macro con fecha y hora de modificación de datos

Private Sub Worksheet_Change(ByVal Target As Range)

If Not Intersect(Range("A2:C15"), Target) Is Nothing And Target.Count = 1 Then

Application.EnableEvents = False

Target.Offset(0, 1) = Now

Application.EnableEvents = True

End If

End Sub

You might also like