Requiero insertar en 2 celdas hora inicio y hora fin
Necesito una macro que inserte la hora en la celda B a partir del llenado de la celda J y que a su vez también ponga la hora en la celda C a partir del llenado de datos de la celda m en excel... Espero me ayuden es primera vez que pido ayuda en un foro
tengo esta macro pero solo funciona la rutina 1
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Range("J:K"), Target) Is Nothing Then Exit Sub
Cells(Target.Row, 2) = Format(Time, "hh:mm")
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Range("M:L"), Target) Is Nothing Then Exit Sub
Cells(Target.Row, 3) = Format(Time, "hh:mm")
End Sub
Desde ya agradecido
Atentamente
hugo
tengo esta macro pero solo funciona la rutina 1
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Range("J:K"), Target) Is Nothing Then Exit Sub
Cells(Target.Row, 2) = Format(Time, "hh:mm")
Private Sub Worksheet_Change(ByVal Target As Range)
If Intersect(Range("M:L"), Target) Is Nothing Then Exit Sub
Cells(Target.Row, 3) = Format(Time, "hh:mm")
End Sub
Desde ya agradecido
Atentamente
hugo
1 respuesta
Respuesta de emoren
1