he conseguido , que se pongan la fecha y la hora automatica , ahora quiero que se active la columna D y al introducir un dato se active la columna A , asi sucesivamente.
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Application.Intersect(Target, Range("A:A")) Is Nothing Then
Range("B" & Target.Row) = Date
Range("C" & Target.Row) = Format(Now, "hh:mm")
ActiveSheet.Range("D").Select
f Not Application.Intersect(Target, Range("D:D")) Is Nothing Then
he conseguido , que se pongan la fecha y la hora automatica , ahora quiero que se active la columna D y al introducir un dato se active la columna A , asi sucesivamente.
Private Sub Worksheet_Change(ByVal Target As Range)
If Not Application.Intersect(Target, Range("A:A")) Is Nothing Then
Range("B" & Target.Row) = Date
Range("C" & Target.Row) = Format(Now, "hh:mm")
ActiveSheet.Range("D").Select
f Not Application.Intersect(Target, Range("D:D")) Is Nothing Then
ActiveSheet.Range("A").Select
End If
End Sub
lo rojo esta mal .
EJEMPLO TABLA.rar