Saltar al contenido

Repetir datos en otras columnas


Recommended Posts

publicado
Buenas tardes,
 
Tengo este fragmento de código en el libro, de manera que cada vez que introduzco un valor en una celda de la columna B, me devuelve la fecha en la celda adyacente de la columna C. Me gustaría repetir la misma operación en el mismo libro, de manera que cuando se introduce un valor en las celdas de las columnas E y H, también devuelva las fechas en las celdas adyacentes de las columnas F e I. ¿Alguien sabría indicarme cómo repetir la misma operación?
 

Private Sub Worksheet_Change(ByVal Target As Range)
tiempo = Date
Set isect = Application.Intersect(Target, Range("B:B"))
If Not isect Is Nothing Then
If isect.Value <> "" Then
isect.Offset(0, 1).Value = tiempo
End If
Set isect = Application.Intersect(Target, Range("B:B"))
If Not isect Is Nothing Then
If isect.Value = "" Then
isect.Offset(0, 1).Value = ""
End If
End If
End If
End Sub

Private Sub Worksheet_Deactivate()

End Sub
 

Sin título.jpg

publicado

Buenas tardes,

Supongo que repitiendo el mismo fragmento de código pero modificando las letras de las columnas, obtendría el mismo resultado:

----------

Private Sub Worksheet_Change(ByVal Target As Range)
tiempo = Date
Set isect = Application.Intersect(Target, Range("B:B"))
If Not isect Is Nothing Then
    If isect.Value <> "" Then
        isect.Offset(0, 1).Value = tiempo
    End If
    Set isect = Application.Intersect(Target, Range("B:B"))
    If Not isect Is Nothing Then
        If isect.Value = "" Then
            isect.Offset(0, 1).Value = ""
        End If
    End If
End If

Set isect = Application.Intersect(Target, Range("E:E"))
If Not isect Is Nothing Then
    If isect.Value <> "" Then
        isect.Offset(0, 1).Value = tiempo
    End If
    Set isect = Application.Intersect(Target, Range("E:E"))
    If Not isect Is Nothing Then
        If isect.Value = "" Then
            isect.Offset(0, 1).Value = ""
        End If
    End If
End If

Set isect = Application.Intersect(Target, Range("H:H"))
If Not isect Is Nothing Then
    If isect.Value <> "" Then
        isect.Offset(0, 1).Value = tiempo
    End If
    Set isect = Application.Intersect(Target, Range("H:H"))
    If Not isect Is Nothing Then
        If isect.Value = "" Then
            isect.Offset(0, 1).Value = ""
        End If
    End If
End If

End Sub

Private Sub Worksheet_Deactivate()

End Sub

----------

¿Sería correcto?

 

publicado

Buenas @Mohamad Marrawi Marrawi , seria de esta forma :

Private Sub Worksheet_Change(ByVal Target As Range)
 If Not Intersect(Target, Range("B:B,E:E,H:H")) Is Nothing And InStr(1, Target.Address, ":") = 0 Then
  If Target <> Empty Then
   Target.Offset(0, 1).Value = Date
  Else
   Target.Offset(0, 1).Value = ""
  End If
 End If
End Sub

Saludos

 

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.