Saltar al contenido

Automatizar un pequeño libro


Recommended Posts

publicado

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

Invitado sacfa
publicado

Prueba a ver si esto lo que buscas:

Private Sub Worksheet_SelectionChange(ByVal Target As Range)

If Not Intersect(ActiveCell, Columns(4)) Is Nothing Then

If ActiveCell > 0 Then

Application.SendKeys "{ENTER}"

End If

End If

End Sub

publicado

me da un error al introducirla , me dice se espera un End sub

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")

Private Sub Worksheet_SelectionChange(ByVal Target As Range)

If Not Intersect(ActiveCell, Columns(4)) Is Nothing Then

If ActiveCell > 0 Then

Application.SendKeys "{ENTER}"

End If

End If

End Sub

Archivado

Este tema está ahora archivado y está cerrado a más respuestas.

×
×
  • Crear nuevo...

Información importante

Echa un vistazo a nuestra política de cookies para ayudarte a tener una mejor experiencia de navegación. Puedes ajustar aquí la configuración. Pulsa el botón Aceptar, si estás de acuerdo.